You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.