Increase timeouts.
* Disconnect timeout: back from 2.5 to 5s. * Overall command timeout: 4 to 10m (setting basal profile toke 5.5m shifting by 12h and increasing from 100% to 200%.
This commit is contained in:
parent
44ccbc06a0
commit
b8e320ae6f
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ import de.jotomo.ruffyscripter.commands.SetTbrCommand;
|
||||||
public class RuffyScripter implements RuffyCommands {
|
public class RuffyScripter implements RuffyCommands {
|
||||||
private static final Logger log = LoggerFactory.getLogger(RuffyScripter.class);
|
private static final Logger log = LoggerFactory.getLogger(RuffyScripter.class);
|
||||||
|
|
||||||
private static final long DISCONNECT_TIME_OUT_MS = 2500;
|
private static final long DISCONNECT_TIME_OUT_MS = 5000;
|
||||||
|
|
||||||
private IRuffyService ruffyService;
|
private IRuffyService ruffyService;
|
||||||
|
|
||||||
|
@ -305,7 +305,7 @@ public class RuffyScripter implements RuffyCommands {
|
||||||
long executionStart = System.currentTimeMillis();
|
long executionStart = System.currentTimeMillis();
|
||||||
cmdThread.start();
|
cmdThread.start();
|
||||||
|
|
||||||
long overallTimeout = System.currentTimeMillis() + 4 * 60 * 1000;
|
long overallTimeout = System.currentTimeMillis() + 10 * 60 * 1000;
|
||||||
while (cmdThread.isAlive()) {
|
while (cmdThread.isAlive()) {
|
||||||
if (!ruffyService.isConnected()) {
|
if (!ruffyService.isConnected()) {
|
||||||
// on connection loss try to reconnect, confirm warning alerts caused by
|
// on connection loss try to reconnect, confirm warning alerts caused by
|
||||||
|
|
Loading…
Reference in a new issue