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
Problem is caused by get_stat_json creating an invalid Artifactory Storage API request by duplicating the / between artifactory and api.
In the example above, when we reach get_stat_json and process the url, instead of getting http://my-artifactory/artifactory/api/storage/upload-dest
we get http://my-artifactory/artifactory//api/storage/upload-dest (notice the // between artifactory and api).
The text was updated successfully, but these errors were encountered:
When trying to upload an artifact we error out with
Code to reproduce the issue:
Problem is caused by
get_stat_json
creating an invalid Artifactory Storage API request by duplicating the/
betweenartifactory
andapi
.In the example above, when we reach get_stat_json and process the url, instead of getting
http://my-artifactory/artifactory/api/storage/upload-dest
we get
http://my-artifactory/artifactory//api/storage/upload-dest
(notice the//
betweenartifactory
andapi
).The text was updated successfully, but these errors were encountered: