diff --git a/gun.js b/gun.js index 18aba562..b8b6c08e 100644 --- a/gun.js +++ b/gun.js @@ -2412,7 +2412,10 @@ return; } - var client = Client.pool[url] = new Client(url); + var client = new Client(url, options.backoff); + + // Add it to the pool. + Client.pool[url] = client; // Listen to incoming messages. client.on('message', function (msg) {