https://dagster.io/ logo
#ask-community
Title
# ask-community
g

Gatsby Lee

12/07/2022, 4:45 AM
Maybe this is not possible since the actual value is not available during planning time. can anyone confirm this?
o

owen

12/07/2022, 10:58 PM
Hi @Gatsby Lee that's correct -- in general, the contents of the
@job
annotated function cannot be influenced by anything that would happen at runtime (like the values returned from an op). Instead I'd just write the
func
op to take in the output of
op_get_config
as input (unless this example is missing something more at the heart of what you're trying to do)
g

Gatsby Lee

12/07/2022, 11:05 PM
@owen thank you for confirming that.
Like you said, I used the output of op_get_config as a input for others op.
Thank you!