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 f569ed0 commit 7451415Copy full SHA for 7451415
1 file changed
src/infra/heartbeat-runner.ts
@@ -1852,8 +1852,11 @@ export function startHeartbeatRunner(opts: {
1852
});
1853
continue;
1854
}
1855
- if (commitmentRes.status === "skipped" && commitmentRes.reason === "requests-in-flight") {
1856
- requestsInFlight = true;
+ if (
+ commitmentRes.status === "skipped" &&
1857
+ isRetryableHeartbeatBusySkipReason(commitmentRes.reason)
1858
+ ) {
1859
+ retryableBusySkip = true;
1860
return commitmentRes;
1861
1862
if (commitmentRes.status === "ran") {
0 commit comments