You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -333,13 +334,13 @@ export class GroupPage extends BasePage {
333
334
// Backend cache linking can take 10-30s+ depending on mirror node latency
334
335
constfound=awaitthis.waitForTransactionInTab(
335
336
this.organizationPage.readyToSignTabSelector,
336
-
30,// Max 30 retries (increased from 15)
337
-
2000,// 2 seconds between retries = max 60s wait
337
+
readyToSignMaxRetries,
338
+
readyToSignRetryDelayMs,
338
339
);
339
340
340
341
if(!found){
341
342
thrownewError(
342
-
`User ${i} (${user.email}) could not find transaction in Ready to Sign tab after 30 retries (60s timeout)`,
343
+
`User ${i} (${user.email}) could not find a transaction in Ready to Sign after ${readyToSignMaxRetries} attempts with a ${readyToSignRetryDelayMs}ms retry delay`,
343
344
);
344
345
}
345
346
@@ -378,8 +379,6 @@ export class GroupPage extends BasePage {
378
379
}
379
380
}while(true);
380
381
}
381
-
382
-
// Wait for backend to process signatures before next user logs in
0 commit comments