Pycharm remote debugger slows down on startup and reload

Hi, 

I have configured remote debugging for docker in my PyCharm Pro trial.

Everytime the application starts or the code reloads and the "pydevd.settrace()" gets called, the application will hang like it hit a breakpoint or, in case the debugger is not active, it will fail to start after a very long time-out. 

Is there a way to make this debugging process less obtrusive? So automatically continue starting after attaching the remote debugger and faster startup in case the debugger is not active in PyCharm?

0
1 comment
Avatar
Permanently deleted user

The settrace method contained an optional 'suspend' parameter which I missed.
With suspend=False, the application will start like normal.

0

Please sign in to leave a comment.