Missing history
I think I have a bug with TeamCity 2018.1.1 with Chrome
I have +- 10 configurations which all have some history.
When I ask for the history of a configuration the screen says
No builds were found in whole build history
whatever I do in the selection of All, OK, bad, ...
(URL of that screen is https://xxx/viewType.html?buildTypeId=xxx&tab=buildTypeHistoryList)
I know the builds are there because if I ask for the Change Log it points to some past builds for which I can see the results.
Any clue if this is a misconfiguration or a bug?
Thanks
Yves
Please sign in to leave a comment.
Hi Yves,
you mention having the bug in Chrome. Could you try accessing the same pages with other broswers and seeing whether the issue repeats itself? If not, please run basic troubleshooting with chrome (clear cache, etc).
If it still happens, please change from "Overview" to "History" on the top tabs and see whether that actually displays the builds. If so, please send a screenshot of all the builds that show up in history.
Hello Denis,
Thank you for your reply.
I actually investigated this with Ekaterina from JetBrains support (very efficient)
We found out that there was an error in my nginx redirect which was
proxy_pass http://127.0.0.1:8111/TeamCity/
instead of
proxy_pass http://127.0.0.1:8111/TeamCity
(note the extra / at the end)
That was causing some ajax request to call for .../TeamCity//app (note double slash) instead of .../TeamCity/app and was causing the issue in the UI.
Best regards
Yves