Skip to content

Commit

Permalink
fix: do not timeout when completed
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlc03 committed Aug 22, 2024
1 parent ec0a079 commit 7679fe7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/backend/src/functions/timeout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ export const checkAndRemoveBlockingContributor = functions
timeoutExpirationDateInMsForBlockingContributor < currentServerTimestamp &&
(contributionStep === ParticipantContributionStep.DOWNLOADING ||
contributionStep === ParticipantContributionStep.COMPUTING ||
contributionStep === ParticipantContributionStep.UPLOADING ||
contributionStep === ParticipantContributionStep.COMPLETED)
contributionStep === ParticipantContributionStep.UPLOADING)
)
timeoutType = TimeoutType.BLOCKING_CONTRIBUTION

Expand Down

0 comments on commit 7679fe7

Please sign in to comment.