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?
You could try passing suspend=False
to pydevd.settrace()
in case PyCharm has some problem with applying this setting itself.