We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2986d3d commit b5054feCopy full SHA for b5054fe
.github/workflows/payload_filter.yml
@@ -19,5 +19,6 @@ jobs:
19
docker-compose up --build -d
20
sleep 5
21
env
22
+ docker ps -a
23
./inspect.sh
24
../testing/test.sh ./about
payload_filter/inspect.sh
@@ -1,10 +1,10 @@
1
#!/bin/sh
2
3
-function tryit {
4
- echo "$1 is ready on port $2 ?";
5
- curl http://localhost:$2 | grep "$3" | wc -l
6
-}
+echo "good ready?"
+curl http://localhost:5015
7
8
-tryit good 5015 "matching"
9
-tryit nope 5066 "not matching"
10
-tryit nginx 8080/ping "pong"
+echo "nope ready?"
+curl http://localhost:5066
+
+echo "nginx ready?"
+curl http://localhost:8080/ping
0 commit comments