From 456ccb44694b4724b3315b087e6496655b70df67 Mon Sep 17 00:00:00 2001 From: Curt Tudor Date: Tue, 1 Aug 2023 16:50:12 -0600 Subject: [PATCH] fix: pause for TLS cipher suite negotiation completion (#108) --- src/channel/wasm-tls-connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/channel/wasm-tls-connection.js b/src/channel/wasm-tls-connection.js index 16f21c0..4a50d33 100644 --- a/src/channel/wasm-tls-connection.js +++ b/src/channel/wasm-tls-connection.js @@ -226,7 +226,7 @@ import {Mutex, withTimeout, Semaphore} from 'async-mutex'; setTimeout((self) => { self._zitiContext.logger.trace("ZitiWASMTLSConnection.connected(): after timeout"); self._connected = true; - }, 100, this); + }, 500, this); }