We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef763d0 commit f0fc8c2Copy full SHA for f0fc8c2
1 file changed
extensions/qa-lab/src/live-transports/slack/slack-live.runtime.ts
@@ -44,6 +44,7 @@ type SlackChannelStatus = {
44
45
const SLACK_QA_READY_TIMEOUT_MS = 45_000;
46
const SLACK_QA_READY_STABILITY_MS = 3_000;
47
+const SLACK_QA_GATEWAY_STOP_SETTLE_MS = 3_000;
48
49
type SlackQaScenarioId =
50
| "slack-allowlist-block"
@@ -1058,6 +1059,7 @@ export async function runSlackQaLive(params: {
1058
1059
await gatewayHarness.stop().catch((error) => {
1060
appendLiveLaneIssue(cleanupIssues, "gateway stop failed", error);
1061
});
1062
+ await new Promise((resolve) => setTimeout(resolve, SLACK_QA_GATEWAY_STOP_SETTLE_MS));
1063
}
1064
1065
0 commit comments