pcf_blue_green 0.36 → 0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/pcf_blue_green/version.rb +1 -1
- data/lib/shared-deploy-functions.sh +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c2be7a8a3e2385019b66a976f91183e81a98d2db
|
|
4
|
+
data.tar.gz: c26e29bc60ada6d3542a54094616a3d2ce973939
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c3a5bf1829a838825f6fff09c13fec96611a2a8deccb5c0e8a1a73cbcfb5bd61c8816b35a58c6c47ecca1062e7e3da5b152e897c230931a36305c2d2603553a
|
|
7
|
+
data.tar.gz: 903df1eb53679b6af3a83cf7079d8721f7f9d33619e075d23eea4eb2e59d6b3086a86aaab646e63a940e401ead3d58a32ab9d6467bf5219c037a65b4998ca6f6
|
|
@@ -85,7 +85,7 @@ function check-health {
|
|
|
85
85
|
fi
|
|
86
86
|
else
|
|
87
87
|
curl -fsSIL --header "x-digital-auth: ${JWT}" --user "${BASIC_AUTH_USERNAME}:${BASIC_AUTH_PASSWORD}" ${app_url} --insecure
|
|
88
|
-
status=$(curl -sSIL -X GET -o /dev/null -w "%{http_code}" ${app_url} --insecure)
|
|
88
|
+
status=$(curl -sSIL --header "x-digital-auth: ${JWT}" -X GET -o /dev/null -w "%{http_code}" ${app_url} --insecure)
|
|
89
89
|
if [ $status == 200 ] ; then
|
|
90
90
|
echo -e "${BGre}curl of ${app_url} 200 OK"
|
|
91
91
|
else
|
|
@@ -95,7 +95,7 @@ function check-health {
|
|
|
95
95
|
fi
|
|
96
96
|
else
|
|
97
97
|
curl -fsSIL -X GET --header "x-digital-auth: ${JWT}" --user "${BASIC_AUTH_USERNAME}:${BASIC_AUTH_PASSWORD}" ${app_url} --insecure
|
|
98
|
-
status=$(curl -sSIL
|
|
98
|
+
status=$(curl -sSIL --header "x-digital-auth: ${JWT}" -X GET -o /dev/null -w "%{http_code}" ${app_url} --insecure)
|
|
99
99
|
if [ $status == 200 ] ; then
|
|
100
100
|
echo -e "${BGre}curl of ${app_url} 200 OK"
|
|
101
101
|
else
|