From ed2e1f23e91f0c47c9b4868fe7298af11709cbdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Mrozi=C5=84ski?= Date: Fri, 11 Sep 2020 08:25:12 +0200 Subject: [PATCH] Change timeout 1s -> 5s to reduce Timeout errors (#988) --- editor/wrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/wrap.ts b/editor/wrap.ts index a224a99e..018358ff 100644 --- a/editor/wrap.ts +++ b/editor/wrap.ts @@ -116,7 +116,7 @@ export class Ev3Wrapper { if (this.dataDump) log("TALK: " + U.toHex(buf)) return this.io.sendPacketAsync(buf) - .then(() => this.msgs.shiftAsync(1000)) + .then(() => this.msgs.shiftAsync(5000)) .then(resp => { if (resp[2] != buf[2] || resp[3] != buf[3]) U.userError("msg count de-sync")