Question

I've setup a remote debugging configuration in PyCharm based on this link. Despite the fact that I unmarked the Suspend after connect option, the debugger suspends upon connect and I must manually resume the program on each run.

Is there a way for the remote debugger not to suspend on connect?

Was it helpful?

Solution

You could try passing suspend=False to pydevd.settrace() in case PyCharm has some problem with applying this setting itself.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top