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
The following request as a Get or Post will always return a 308 if I do not set the Body as nil.
SetHeader("Authorization", bearerGithubToken()).
Body(nil).
Expect(t).
Status(200).
Done()```
On a Post I always get a 308.
``baseURL.Post("/v1/definition/stack").
SetHeader("Authorization", bearerGithubToken()).
JSON(app).
Expect(t).
Status(200).
Done()```
Each of these requests works correctly outside the baloo libraries. I have compared the request struct and cannot figure out the difference.
Any suggestions?
The text was updated successfully, but these errors were encountered:
The following request as a Get or Post will always return a 308 if I do not set the Body as nil.
The text was updated successfully, but these errors were encountered: