I am not able to open any of the pull request
Welcome to the Atlassian Community!
Checking our UI logs for your username, I can see that you have faced a few 500 issues over the last week while viewing Pull Request and, all issues are pointing out to a RequestTimeoutError.
In this case, I believe that the Pull Requests that you are trying to view are surpassing our limits for viewing diffs on the UI.
According to the documentation I've linked above, diffs cannot exceed the following limits:
A file's diff cannot exceed 2000 changed lines or 102,400 bytes (100 KB) of raw diff data.
The entire diff cannot exceed 8000 changed lines.
The maximum number of files in a single diff is limited to 200.
In this case, you can run the following commands locally to properly analyze your diff:
$ git diff --stat <destination_branch>...<source_branch>
$ git diff --stat <destination_branch>...<source_branch> | grep myFile.txt
$ git diff <destination_branch>...<source_branch> -- myFile.txt
Cheers,
Mateus T
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.