Skip to content

Commit

Permalink
fix parallel run failure state
Browse files Browse the repository at this point in the history
  • Loading branch information
tjwald committed Jan 22, 2025
1 parent abfd997 commit 4277681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checkov/common/parallelizer/parallel_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class ParallelRunException(Exception):
def __init__(self, internal_exception: Exception) -> None:
self.internal_exception = internal_exception
super().__init__("Parallel run failed", internal_exception)
super().__init__(internal_exception)


class ParallelRunner:
Expand Down

0 comments on commit 4277681

Please sign in to comment.