Skip to content

Commit

Permalink
0002924: java.util.concurrent.TimeoutException: Idle timeout expired:
Browse files Browse the repository at this point in the history
60000/60000 ms
  • Loading branch information
chenson42 committed Nov 30, 2016
1 parent 11deef4 commit 4f87dfe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion symmetric-server/src/main/deploy/conf/sym_service.conf
Expand Up @@ -46,7 +46,8 @@ wrapper.java.maxmemory=1024
wrapper.app.parameter.1=org.jumpmind.symmetric.SymmetricLauncher

# This how long Jetty will wait until timing out on an HTTP response
wrapper.app.parameter.2=--max-idle-time=60000
# This value must be greater than the send.ack.keepalive.ms parameter
wrapper.app.parameter.2=--max-idle-time=90000

#********************************************************************
# Wrapper Logging Properties
Expand Down
Expand Up @@ -104,7 +104,7 @@ public class SymmetricWebServer {

public static final String DEFAULT_HTTPS_PORT = System.getProperty(SystemConstants.SYSPROP_DEFAULT_HTTPS_PORT, "31417");

public static final int DEFAULT_MAX_IDLE_TIME = 60000;
public static final int DEFAULT_MAX_IDLE_TIME = 90000;

/**
* The type of HTTP connection to create for this SymmetricDS web server
Expand Down

0 comments on commit 4f87dfe

Please sign in to comment.