You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #139, many people have reported being unable to use justMyCode as expected. While there is a workaround in the linked comment, I believe it ultimately stems from the global debugpy.debugJustMyCode overwriting the launch configuration option, which I think is unexpected.
I had always been relying on the launch-configuration-level setting of justMyCode being set to false to be sufficient. Is the extension perhaps not merging the different levels of configs as expected and leading to the default debugpy.debugJustMyCode to trump the launch-configuration-level justMyCode when specified in .code-workspace files?
However I also think that, even without repro-ing, it may be reasonable to re-examine the config merging behavior of debugpy.debugJustMyCode with workspace-level launch configuration settings to definitively debug the root cause hypothesis here or confirm it.
In #139, many people have reported being unable to use
justMyCodeas expected. While there is a workaround in the linked comment, I believe it ultimately stems from the globaldebugpy.debugJustMyCodeoverwriting the launch configuration option, which I think is unexpected.Originally posted by @tboddyspargo in #139
I wanted to repost this here in an effort to specifically focus on the question of configuration merging behavior.
I expect the repro to be something like:
purposefile or test debug configuration (with"justMyCode": false) in the launch configuration of a.code-workspacefile.However I also think that, even without repro-ing, it may be reasonable to re-examine the config merging behavior of
debugpy.debugJustMyCodewith workspace-level launch configuration settings to definitively debug the root cause hypothesis here or confirm it.