You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
- #
- # Test the fastapi via curl
- #
- # Author: donkey <anjingyu_ws@foxmail.com>
-
- curl -vv http://localhost:27754/engine/list
- sleep 1
-
- curl -vv -X POST "http://localhost:27754/task/startup?task_id=1234567&task_type=111"
- sleep 1
-
- curl -vv -X POST "http://localhost:27754/task/shutdown?task_id=1234567"
|