Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels