Hi, is there a way to use <pdb> with recent Dagste...
# ask-community
c
Hi, is there a way to use pdb with recent Dagster version. I found
ForkedPdb().set_trace()
but I couldn’t make it work locally. It seems to be blocking the process but the REPL doesn’t start. Documentation is also missing. Thanks in advance
dagster bot responded by community 2
d
if this is outside of dagit, there are two options (inside of dagit, I don't really know of any): 1. python -m pdb <yourmodule> 2. call
breakpoint()
from your code, it will drop you right into pdb at that location
c
I see, thanks I will try that next time 🙂