Skip to content

Commit

Permalink
greg review
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
  • Loading branch information
olamy committed Jan 24, 2019
1 parent 32e7511 commit 47a4bdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions jetty-websocket/websocket-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@
<goal>fuzzingclient</goal>
</goals>
<configuration>
<!-- The class contains a main method that accept the port as parameter and startup the -->
<!-- the server. -->
<!-- The class that contains a main method which accepts the port as a parameter to start the server. -->
<mainClass>org.eclipse.jetty.websocket.core.autobahn.AutobahnWebSocketServer</mainClass>
</configuration>
</execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public FrameHandler negotiate(Negotiation negotiation) throws IOException
@Override
public void customize(FrameHandler.CoreSession session)
{
session.setIdleTimeout(Duration.ofMillis(5000));
session.setIdleTimeout(Duration.ofMillis(10000));
session.setMaxTextMessageSize(Integer.MAX_VALUE);
session.setMaxBinaryMessageSize(Integer.MAX_VALUE);
session.setMaxFrameSize(65536*2);
Expand Down

0 comments on commit 47a4bdc

Please sign in to comment.