Skip to content

Commit

Permalink
fix(airflow): Fix incorrect node names (kedro-org#594)
Browse files Browse the repository at this point in the history
* Fix incorrect node names + switch e2e tests to spaceflights-pandas

Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>

* Not switch e2e tests starters for now

Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>

* Revert changes to e2e tests

Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>

---------

Signed-off-by: Ankita Katiyar <ankitakatiyar2401@gmail.com>
Signed-off-by: tgoelles <thomas.goelles@gmail.com>
  • Loading branch information
ankatiyar authored and tgoelles committed Jun 6, 2024
1 parent 5256c83 commit 7e992a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kedro-airflow/kedro_airflow/airflow_dag_template.j2
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ with DAG(
task_id="{{ node_name | safe | slugify }}",
package_name=package_name,
pipeline_name=pipeline_name,
node_name={% if node_list | length > 1 %}[{% endif %}{% for node in node_list %}"{{ node.name | safe | slugify }}"{% if not loop.last %}, {% endif %}{% endfor %}{% if node_list | length > 1 %}]{% endif %},
node_name={% if node_list | length > 1 %}[{% endif %}{% for node in node_list %}"{{ node.name | safe }}"{% if not loop.last %}, {% endif %}{% endfor %}{% if node_list | length > 1 %}]{% endif %},
project_path=project_path,
env=env,
),
Expand Down

0 comments on commit 7e992a0

Please sign in to comment.