mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Don't interrupt debugger on flask reload (#721)
This commit is contained in:
parent
7cb12bed8b
commit
5dc21d67b3
1 changed files with 1 additions and 1 deletions
|
|
@ -397,7 +397,7 @@ class PyDevJsonCommandProcessor(object):
|
|||
|
||||
if not self._options.break_system_exit_zero:
|
||||
ignore_system_exit_codes = [0, None]
|
||||
if self._options.django_debug:
|
||||
if self._options.django_debug or self._options.flask_debug:
|
||||
ignore_system_exit_codes += [3]
|
||||
|
||||
self.api.set_ignore_system_exit_codes(py_db, ignore_system_exit_codes)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue