Skip to content

Commit 84d6ccc

Browse files
committed
Merge remote-tracking branch 'origin/main' into vector-bump-0.55.0
2 parents 554130d + 81de81f commit 84d6ccc

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/modules/airflow/examples/example-configmap.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ data:
77
test_airflow_dag.py: | # <2>
88
from datetime import datetime, timedelta
99
from airflow import DAG
10-
from airflow.operators.bash import BashOperator
11-
from airflow.operators.dummy import DummyOperator
10+
from airflow.providers.standard.operators.bash import BashOperator
11+
from airflow.providers.standard.operators.empty import EmptyOperator
1212
1313
with DAG(
1414
dag_id='test_airflow_dag',
@@ -19,7 +19,7 @@ data:
1919
tags=['example', 'example2'],
2020
params={"example_key": "example_value"},
2121
) as dag:
22-
run_this_last = DummyOperator(
22+
run_this_last = EmptyOperator(
2323
task_id='run_this_last',
2424
)
2525

tests/test-definition.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dimensions:
1919
# - x.x.x,oci.stackable.tech/sandbox/airflow:x.x.x-stackable0.0.0-dev
2020
- name: opa-latest
2121
values:
22-
- 1.12.3
22+
- 1.16.2
2323
- name: ldap-authentication
2424
values:
2525
- no-tls

0 commit comments

Comments
 (0)