Commit 12ff1f4d authored by 김진영's avatar 김진영
Browse files

Update batch_test.py

parent 2eaf964f
...@@ -20,6 +20,7 @@ with DAG( ...@@ -20,6 +20,7 @@ with DAG(
default_args={ default_args={
'depends_on_past': False, 'depends_on_past': False,
'email': 'kim-jy@lotte.net', 'email': 'kim-jy@lotte.net',
'on_failure_callback': fail_alert
}, },
description='Test Batch Job', description='Test Batch Job',
schedule_interval='*/1 * * * *', schedule_interval='*/1 * * * *',
...@@ -31,7 +32,6 @@ with DAG( ...@@ -31,7 +32,6 @@ with DAG(
health_check = BashOperator( health_check = BashOperator(
task_id='health_check', task_id='health_check',
bash_command="curl -X GET -v http://10.231.238.224:30999/api/v1/core/health \'-H accept: application/json\'", bash_command="curl -X GET -v http://10.231.238.224:30999/api/v1/core/health \'-H accept: application/json\'",
on_failure_callback: fail_alert
) )
# (Task2) gasan 작업 병렬처리 # (Task2) gasan 작업 병렬처리
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment