can a sensor access the config of a job it’s defin...
# ask-community
c
can a sensor access the config of a job it’s defined with? context: I have a sensor that launches a configured job, but I want to add additional config in the
RunRequest
. Since it seems like the config specified in the
RunRequest
overrides the config in the configured job, I’d like to combine the configured job’s config with additional config in the
RunRequest
. The reason I can’t put the additional config when configuring the job is that the additional config is runtime dependent (date), while the job’s config is fixed
c
It can’t access it directly off of the sensor context, but if the job and sensor are in the same module, you can always pass the config to both when they are being defined
👍 1