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 f572c0f commit fb56932Copy full SHA for fb56932
internal-packages/run-engine/src/engine/index.ts
@@ -1941,6 +1941,13 @@ export class RunEngine {
1941
return;
1942
}
1943
1944
+ if (run.lockedAt) {
1945
+ this.logger.debug("Run cannot be expired because it's locked, so will run", {
1946
+ run,
1947
+ });
1948
+ return;
1949
+ }
1950
+
1951
const error: TaskRunError = {
1952
type: "STRING_ERROR",
1953
raw: `Run expired because the TTL (${run.ttl}) was reached`,
0 commit comments