https://dagster.io/ logo
Title
g

George Pearse

01/06/2022, 2:13 PM
Can you use ipdb in dagster? e.g.
context.ipdb.set_trace()
?
p

prha

01/06/2022, 2:43 PM
For debugging ops during execution, we have
context.pdb.set_trace()
. See https://docs.dagster.io/_apidocs/execution#dagster.OpExecutionContext.pdb
I guess you’re asking specifically for
ipdb
?
g

George Pearse

01/06/2022, 2:45 PM
Yeah that was the hope but figured it was unlikely
p

prha

01/06/2022, 2:48 PM
yeah, unfortunately no. I think probably we don’t want to add
ipdb
to our list of package deps. you could file a feature request though to progressively check for it though under a try/catch