You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was lengthy investigation, but basically, in the "start" function (line 39 of visualRegressionTracker.py) you use string concatenation to build target URL. If hostname ends with "/", the result is: https://my.url.com//builds
to which the server responds with 404 and invalid "Project not found".
This was lengthy investigation, but basically, in the "start" function (line 39 of visualRegressionTracker.py) you use string concatenation to build target URL. If hostname ends with "/", the result is:
https://my.url.com//builds
to which the server responds with 404 and invalid "Project not found".
Instead a urllib.parse.urljoin should've been used to avoid this type of problem (see https://stackoverflow.com/questions/1793261/how-to-join-components-of-a-path-when-you-are-constructing-a-url-in-python)
The text was updated successfully, but these errors were encountered: