https://dagster.io/ logo
c

Chris Roth

03/24/2020, 4:36 PM
is it possible to use ipdb to debug solids?
s

sashank

03/24/2020, 4:39 PM
Hey Chris, we have a small util that helps you do this
Copy code
from dagster.utils.pdb import ForkedPdb

@solid
def complex_solid(_):
    # some complicated stuff
    ForkedPdb().set_trace()
    # some other complicated stuff
m

max

03/24/2020, 4:50 PM
might be nice to put that on the solid execution context tbh
so we have context.pdb.set_trace()
c

Chris Roth

03/24/2020, 4:50 PM
that would be amazing
this is great btw