Author Topic: SERT 1: Flood worklet never completes  (Read 4615 times)

GregDarnell

  • Moderator
  • Newbie
  • *****
  • Posts: 21
  • Karma: +1/-0
SERT 1: Flood worklet never completes
« on: July 25, 2017, 11:53:58 AM »
For some systems, particularly those with large memory configurations, SERT 1 will sometimes hang during the Flood worklet and never complete.  There is a workaround that will fix this issue.  If the serthost_out.txt file on the system under test has an error at the end similar to the following:

Jul 24, 2017 8:58:23 PM org.spec.chauffeur.host.Host main
SEVERE: Exception during execution
org.spec.chauffeur.common.ChauffeurIOException: Timed out waiting for clients to connect



then the workaround is to edit serthost.bat or serthost.sh (depending on your controller's OS):

edit serthost.bat and change the line:
 
set KEEPALIVE=-keepalive
 
to:
 
set KEEPALIVE=-keepalive -connectTimeout 600
 
 
Or for non-Windows, edit serthost.sh and change:
 
KEEPALIVE=-keepalive
 
to
 
KEEPALIVE="-keepalive -connectTimeout 600"
 
 
The parameter here is a max of 600 seconds (10 minutes), from the default of 120.