Skip to content

Commit e456c6a

Browse files
committed
reduce wait times for retrying finding room
1 parent e8d7997 commit e456c6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions/zoom-meeting-webhook-handler/airtable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async function findRoomInstance(room, base, instanceId) {
2121
let count = 0;
2222
while (count < 5 && !roomInstance) {
2323
count++;
24-
await sleep(1000 * count);
24+
await sleep(400 * count);
2525
roomInstance = await tryFind();
2626
}
2727

0 commit comments

Comments
 (0)