Skip to content

Commit

Permalink
[type:feat] support e2e contain in k8s
Browse files Browse the repository at this point in the history
  • Loading branch information
moremind committed Sep 19, 2023
1 parent 93d49f8 commit 81c6696
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ curl -S "http://localhost:31195/actuator/pluginData"
admin_status=`curl -X GET "http://localhost:31095/actuator/health" -H "accept: */*"`
bootstrap_status=`curl -X GET "http://localhost:31195/actuator/health" -H "accept: */*"`

if [ $admin_status -eq 200 && $bootstrap_status -eq 200 ]; then
if [ $admin_status -eq 200 -a $bootstrap_status -eq 200 ]; then
echo -e "Success to send request: $admin_status"
echo -e "Success to send request: $bootstrap_status"
echo -e "\n-------------------"
Expand Down

0 comments on commit 81c6696

Please sign in to comment.