potiuk edited a comment on issue #20073:
URL: https://github.com/apache/airflow/issues/20073#issuecomment-986961414
If this is just if Monday =-> use this parameter value, if Tuesday -> use
that parameter value this should be super-easily achieved if youhave a common
`get_parameter(logical_date)` method that you could use in your tasks that
would return diferent value based on which date the logical date is for:
```
def get_parameter(logical_date):
if Monday:
return x
if Tuesday:
return y
```
You could even base it on cron expressions if you would like to using
croniter. What's the problem with that?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]