Skip to content

Commit 4cd280d

Browse files
committed
fix WORKFLOW_FETCH_TIMEOUT_MS constant
1 parent aa4d28c commit 4cd280d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/return-dispatch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export async function getRunIdAndUrl({
140140
workflowJobStepsRetryMs,
141141
}: GetRunIdAndUrlOpts): Promise<Result<{ id: number; url: string }>> {
142142
const retryTimeout = Math.max(
143-
workflowJobStepsRetryMs,
143+
constants.WORKFLOW_FETCH_TIMEOUT_MS,
144144
workflowTimeoutMs,
145145
);
146146

0 commit comments

Comments
 (0)