Pass a list of strings as parameter of a dependant task in Airflow
问题 I am trying to pass a list of strings from one task to another one via XCom but I do not seem to manage to get the pushed list interpreted back as a list. For example, when I do this in some function blah that is run in a ShortCircuitOperator : paths = ['gs://{}/{}'.format(bucket, obj) for obj in my_list] kwargs['ti'].xcom_push(key='return_value', value=full_paths) and then I want to use such list as a parameter of an operator. For example, run_task_after_blah = AfterBlahOperator( task_id=