- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
Low
 - 
    7.6.3, 7.21.7
 
- 
        8
 - 
        Severity 3 - Minor
 - 
        10
 - 
        
 
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>