我有一个客户端,我无法控制 POST 带有标头Expect: 100-continue
的 JSON 到Play服务器2.1.2。邮政的内容实际上很短,包含我感兴趣的数据。
我一直在控制台中收到这些错误:
[error] play - Oops, unexpected message received in NettyServer (please report this problem): org.jboss.netty.handler.codec.http.DefaultHttpChunk@52ed100b
[error] play - Oops, unexpected message received in NettyServer (please report this problem): org.jboss.netty.handler.codec.http.HttpChunk$1@6acd73be
java.nio.channels.ClosedChannelException
我的控制器包含一个非常简单的方法:
object TestController extends Controller {
def foo = Action {
Ok("bar")
}
}
我正在使用Play的2.1.x分支(7月19日)。谁能告诉我发生了什么事?
答案 0 :(得分:2)
这与to a race condition in the framework code相关联。
主版本上的issue has been fixed,将包含在2.1.3 release中。