我正在使用Lagom 1.4.6并获得
akka.http.scaladsl.model.EntityStreamException: HTTP chunk size exceeds the configured limit of 1048576 bytes
带有ServiceCall的,用于在build.sbt中定义的impl。
都不是
akka.http.server.parsing.max-chunk-size = 10m
akka.http.client.parsing.max-chunk-size = 10m
也
akka.http.host-connection-pool.client.parsing.max-chuck-size = 10m
在application.conf根目录或application.conf的
中play { ... }
和
play { server { ... } }
block似乎无能为力,但在Dev中,我仍然收到默认的1M限制的相同错误消息。
Lagom微服务中的Akka HTTP configuration应该去哪里?
答案 0 :(得分:1)
您需要在Akka-HTTP设置前面加上play.server
。可以在here中找到文档中的相关部分。
请务必注意,在开发模式下,使用了自定义HTTP服务器,因此它可能会忽略这些设置。