Skip to content

Commit

Permalink
suppress CalcelledError
Browse files Browse the repository at this point in the history
When moving on to the next directory scan, the `CalcelledError` from the previous scan needs to be suppressed.
  • Loading branch information
zrquan authored Oct 18, 2024
1 parent ba9b09a commit 2514378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def start(self) -> None:
self.fuzzer.start()
self.process()

except KeyboardInterrupt:
except (KeyboardInterrupt, asyncio.CancelledError):
pass

finally:
Expand Down

0 comments on commit 2514378

Please sign in to comment.