Spandan Pyakurel
12/28/2020, 11:00 AMsync_users = dagster.ScheduleDefinition(
"sync_users", "*/1 * * * *", "sync_users",mode='development')
I was able to provide mode to the definition. However, I am having trouble providing config to the scheduler. Is there any way to do that?daniel
12/28/2020, 2:32 PMmrdavidlaing
12/29/2020, 12:51 AMrun_config
?
https://docs.dagster.io/_apidocs/schedules#dagster.ScheduleDefinition
Eg:
sync_users = dagster.ScheduleDefinition(
"sync_users", "*/1 * * * *", "sync_users",mode='development', run_config={"solids": {"discover_question_solid": {"config": {"answer": 42}}}})
daniel
12/29/2020, 1:40 AMSpandan Pyakurel
12/29/2020, 5:08 AM