Skip to content

Commit 7451415

Browse files
committed
Agents: fix heartbeat rebase conflict (#74189)
1 parent f569ed0 commit 7451415

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/infra/heartbeat-runner.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1852,8 +1852,11 @@ export function startHeartbeatRunner(opts: {
18521852
});
18531853
continue;
18541854
}
1855-
if (commitmentRes.status === "skipped" && commitmentRes.reason === "requests-in-flight") {
1856-
requestsInFlight = true;
1855+
if (
1856+
commitmentRes.status === "skipped" &&
1857+
isRetryableHeartbeatBusySkipReason(commitmentRes.reason)
1858+
) {
1859+
retryableBusySkip = true;
18571860
return commitmentRes;
18581861
}
18591862
if (commitmentRes.status === "ran") {

0 commit comments

Comments
 (0)