Merge branch 'jetty-9.3.x'

This commit is contained in:
Joakim Erdfelt 2015-12-17 16:16:04 -07:00
commit e0ea078db2
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ public class WebSocketSession extends ContainerLifeCycle implements Session, Web
@Override
public void close()
{
connection.close();
/* This is assumed to always be a NORMAL closure, no reason phrase */
connection.close(StatusCode.NORMAL, null);
}
@Override