Alex Tsankov

Results 4 issues of Alex Tsankov

AWS recently announced [Codebuild](https://aws.amazon.com/documentation/codebuild/) at Re:Invent this year, any plans on integrating it into Lambci for greater builder flexibility? This would solve the problem of a 5 minute build limit,...

This fixes a bug with the restful service attempting to unmarshal a x-www-form-urlencoded request like it is JSON in POST/PUT requests. This fix simply prevents umarshal from tampering with the...

I was working on an endpoint that needed to receive requests in the format x-www-form-urlencoded. This causes issues with the JSON decoder line in [handler.go](https://github.com/Workiva/go-rest/blob/master/rest/handler.go#L138-L141): ``` data, err := decodePayload(payloadString(r.Body))...