We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First of all, nice work.
I spotted an issue with the loss of the Content Type within the AkkaHttpLambdaHandler.proxyToAkkaRequest method.
What happens.
HttpEntity.Strict(text/plain; charset=UTF-8,{ "name": "ArmandoPadilla" })
From the Akka-http perspective. This causes issues when using entity[as[JsValue]] which results in.
The request's Content-Type is not supported. Expected: application/json
The text was updated successfully, but these errors were encountered:
Interesting, thanks for reporting. At initial glance the code looks right:
https://github.com/howardjohn/scala-server-lambda/blob/master/akka-http-lambda/src/main/scala/io/github/howardjohn/lambda/akka/AkkaHttpLambdaHandler.scala#L45-L55
but maybe there is a subtle bug.
I'd be happy to merge any PRs but I probably won't be able to get to fixing this anytime soon due to lack of time
Sorry, something went wrong.
No branches or pull requests
First of all, nice work.
I spotted an issue with the loss of the Content Type within the AkkaHttpLambdaHandler.proxyToAkkaRequest method.
What happens.
HttpEntity.Strict(text/plain; charset=UTF-8,{
"name": "ArmandoPadilla"
})
From the Akka-http perspective. This causes issues when using entity[as[JsValue]] which results in.
The request's Content-Type is not supported. Expected:
application/json
The text was updated successfully, but these errors were encountered: