Skip to content

Commit

Permalink
Merge pull request #298 from privacy-scaling-explorations/297-timeouts
Browse files Browse the repository at this point in the history
timeout - include COMPLETED
  • Loading branch information
glamperd authored May 31, 2024
2 parents f88bcee + b724c44 commit ba9f49f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/backend/src/functions/timeout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ export const checkAndRemoveBlockingContributor = functions
timeoutExpirationDateInMsForBlockingContributor < currentServerTimestamp &&
(contributionStep === ParticipantContributionStep.DOWNLOADING ||
contributionStep === ParticipantContributionStep.COMPUTING ||
contributionStep === ParticipantContributionStep.UPLOADING)
contributionStep === ParticipantContributionStep.UPLOADING ||
contributionStep === ParticipantContributionStep.COMPLETED)
)
timeoutType = TimeoutType.BLOCKING_CONTRIBUTION

Expand Down

0 comments on commit ba9f49f

Please sign in to comment.