@aikidosec/broker-client 0.0.6 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/client.js +1 -1
- package/package.json +1 -1
package/app/client.js
CHANGED
|
@@ -472,7 +472,7 @@ async function registerWithServer() {
|
|
|
472
472
|
* Runs continuously while client is connected.
|
|
473
473
|
*/
|
|
474
474
|
async function resourceSyncTask() {
|
|
475
|
-
await new Promise(resolve => setTimeout(resolve, 15000)); //
|
|
475
|
+
await new Promise(resolve => setTimeout(resolve, 15000)); // Small initial delay before first sync
|
|
476
476
|
|
|
477
477
|
while (true) {
|
|
478
478
|
try {
|
package/package.json
CHANGED