my `dagster.yaml` is: ```run_launcher: module: d...
# announcements
c
my
dagster.yaml
is:
Copy code
run_launcher:
  module: dagster.core.launcher
  class: RunLauncher
a
what are you trying to accomplish?
c
i need to set a run-launcher so i can backfill runs
a
ah i see i see
c
i actually just got it to work with the graphql launcher
but the default launcher doesn't work
a
thats the base class - not the default
there currently is no “default”
i actually just got it to work with the graphql launcher
so this works for you? or are you looking for a different behavior
c
yup that works
a
great
c
when i say default, i dagster.core.launcher.RunLauncher
is that just a base class that is only meant to be inherited from maybe?
a
correct - I tried to clarify that by listing
default: None
below
c
ahh ok
that makes sense, i see what you meant now
a
👍 ya if you decide you want specific other you can implement your own by inheriting that base class
c
cool
aight, all working then!
thank you again for the help 🙂
a
no problem