We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per https://github.com/meltano/internal-general/issues/391 we need a way to determine whether the meltano run $tasks are originating from Airflow. To do so we can inject an env var and use a BashOperator call like:
meltano run $tasks
BashOperator( task_id=task_id, bash_command=f"cd {PROJECT_ROOT}; {MELTANO_BIN} run {run_args}", dag=dag, env={"MELTANO_CALLER": "airflow"} )
The text was updated successfully, but these errors were encountered:
is_airflow_caller
No branches or pull requests
Per https://github.com/meltano/internal-general/issues/391 we need a way to determine whether the
meltano run $tasks
are originating from Airflow. To do so we can inject an env var and use a BashOperator call like:The text was updated successfully, but these errors were encountered: