Skip to content

Commit

Permalink
Merge pull request #319 from privacy-scaling-explorations/fix/timeout
Browse files Browse the repository at this point in the history
fix: do not timeout when completed
  • Loading branch information
glamperd authored Aug 23, 2024
2 parents ec0a079 + 7679fe7 commit e312890
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 e312890

Please sign in to comment.