From 092c4a26f7e66cc172b08913baa1e63e20e43134 Mon Sep 17 00:00:00 2001 From: Skillz4Killz Date: Sat, 15 May 2021 19:52:44 +0000 Subject: [PATCH] Commit from GitHub Actions (Lint) --- src/ws/spawn_shards.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ws/spawn_shards.ts b/src/ws/spawn_shards.ts index a5d4fe0fa..aafa337a3 100644 --- a/src/ws/spawn_shards.ts +++ b/src/ws/spawn_shards.ts @@ -61,11 +61,11 @@ export function spawnShards(firstShardId = 0) { `4. Running for of loop in spawnShards function.`, ); - queue.forEach(shardId => { + queue.forEach((shardId) => { bucket.createNextShard.push(async () => { await ws.tellClusterToIdentify(clusterId, shardId, bucketId); - }) - }) + }); + }); bucket.createNextShard[0]?.(); }