Commit 6b6baa49 authored by 김진영's avatar 김진영
Browse files

Update batch_test.py

parent e63dfaf1
......@@ -47,8 +47,8 @@ with DAG(
for i, data in enumerate(gasan_data):
post_gasan_task = BashOperator(
task_id='post_gasan'+str(i),
bash_command="curl -X \'POST\' \'http://10.231.238.224:30999/api/v1/camera/writeimage\' -H \'Content-Type: application/json\' -d \'{\"id\": \"test%s\", \"pw\": \"test\", \"ip\": \"%s\", \"serialNum\": \"%s\", \"camName\": \"%s\"}\'" %(str(i), data["ip"], data["serialNum"], data["camName"]),
task_id='post_gasan'+str(i+1),
bash_command="curl -X \'POST\' \'http://10.231.238.224:30999/api/v1/camera/writeimage\' -H \'Content-Type: application/json\' -d \'{\"id\": \"test\", \"pw\": \"test\", \"ip\": \"%s\", \"serialNum\": \"%s\", \"camName\": \"%s\"}\'" %(data["ip"], data["serialNum"], data["camName"]),
)
post_gasan_tasks.append(post_gasan_task)
......
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