Skip to content

Commit

Permalink
chore: fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
roggervalf committed Feb 22, 2024
1 parent 63c4dbb commit 3586bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/bullmq/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def finishedErrors(self, code: int, jobId: str, command: str, state: str) -> Typ
elif code == ErrorCode.JobLockMismatch.value:
return TypeError(f"Lock mismatch for job {jobId}. Cmd {command} from {state}")
elif code == ErrorCode.ParentJobCannotBeReplaced.value:
return TypeError(f"The parent job of job {jobId} cannot be replaced. {command}")
return TypeError(f"The parent job {jobId} cannot be replaced. {command}")
else:
return TypeError(f"Unknown code {str(code)} error for {jobId}.{command}")

Expand Down

0 comments on commit 3586bc7

Please sign in to comment.