I am trying to upload a DAG defined with taskflow api on google cloud composer but no matter what I do, it doesn't show up in the DAGs list, neither in airflow UI or DAGs list provided by composer.
Another strange thing is that if I upload the file with errors, these show up in composer.
e.g. `
@dag(
schedule=None,
start_date=pendulum.datetime(2021, 1, 1, tz="UTC"),
catchup=False,
tags=["example"],
)
`raises an error about 'schedule' not existing. After changing it to schedule_interval the error is not raised anymore.
I haven't found anything mentioning taskflow api wouldn't work on composer so far but this is my suspicion.
Also, running this on local docker compose setup works as expected.
So, could someone confirm if cloud composer doesn't work with taskflow api, or am I doing something wrong?