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
Where in your initial default.go setup you have the base url ending with a /. This causes a web request to add an addition slash to your url somewebsite.com//api/v1.3/files/... causing the upload request to hang indefinitely.
Removing the / from fmt.Sprintf("%s/%s", c.BaseURL, url)) seems to have done the trick
Fixed code: fmt.Sprintf("%s%s", c.BaseURL, url))
The text was updated successfully, but these errors were encountered:
When calling the GetFile method used in the upload command the code is written
poseidon/pkg/profiles/profile_default.go
Lines 395 to 396 in a0e2f88
Where in your initial default.go setup you have the base url ending with a /. This causes a web request to add an addition slash to your url
somewebsite.com//api/v1.3/files/...
causing the upload request to hang indefinitely.Removing the / from fmt.Sprintf("%s/%s", c.BaseURL, url)) seems to have done the trick
Fixed code:
fmt.Sprintf("%s%s", c.BaseURL, url))
The text was updated successfully, but these errors were encountered: