From 21ed3455ad60b10c11228e1e7a6e370aa2599526 Mon Sep 17 00:00:00 2001 From: kexkey Date: Wed, 10 Apr 2019 22:22:36 -0400 Subject: [PATCH] On RPi, localhost hangs --- sparkwallet/test.sh | 2 +- welcome/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sparkwallet/test.sh b/sparkwallet/test.sh index da8bec8..138e47a 100644 --- a/sparkwallet/test.sh +++ b/sparkwallet/test.sh @@ -25,7 +25,7 @@ timeout_feature() { do_test() { local rc - rc=$(curl -k -s -o /dev/null -w "%{http_code}" https://localhost/sparkwallet/) + rc=$(curl -k -s -o /dev/null -w "%{http_code}" https://127.0.0.1/sparkwallet/) [ "${rc}" -ne "401" ] && return 400 return 0 } diff --git a/welcome/test.sh b/welcome/test.sh index cdb82e4..1853ea8 100644 --- a/welcome/test.sh +++ b/welcome/test.sh @@ -25,7 +25,7 @@ timeout_feature() { do_test() { local rc - rc=$(curl -k -s -o /dev/null -w "%{http_code}" https://localhost/welcome) + rc=$(curl -k -s -o /dev/null -w "%{http_code}" https://127.0.0.1/welcome) [ "${rc}" -ne "401" ] && return 400 return 0 }