https://dagster.io/ logo
Title
c

Cameron Gallivan

08/27/2021, 11:20 PM
On a somewhat related note, is it possible to pass Nothing dependancies with direct invocation? I have the
start_after
defined in the input_defs but calling the solid with
start_after=None
gives:
TypeError: cohort_inputs() got an unexpected keyword argument 'start_after'
But when the start_after arg isn’t included then:
dagster.core.errors.DagsterInvalidInvocationError: No value provided for required input "start_after".
o

owen

08/27/2021, 11:37 PM
This one is a known bug, and a fix should be included for this in next weeks release (sorry you keep running into these issues!)
c

Cameron Gallivan

08/27/2021, 11:40 PM
Whoops sorry should have checked the github, I see the
op
related issue now. Thanks for the heads up