Issue Summary
While navigating to the source view of a file with a long commit history, the history dropdown menu keep loading for a while and after 60 seconds errors out with.
Steps to Reproduce
- Navigate to the source view of a file with a long commit history.
- Click on the history dropdown
- The drop down will load for a minute and error out.
Expected Results
History dropdown should show whatever git was able to fetch from the repository and list it.
Actual Results
History dropdown runs for a minute and errors out with the following.
This issue is caused by the UI timeout that is set to 60 seconds
Workaround
- Use git log for checking the history of the file
git log -p <file-name>
- Use the rest API for checking the file history
https://<BITUCKET_BAS_URL>/rest/api/latest/projects/<projectId>/repos/<repositoryId>/commits?path=<FILE-PATH>
- is caused by
-
BSERV-12757 Ability to increase UI timeout parameter in Bitbucket 7.x
- Closed