Преглед на файлове

Fix ghost test to not request "//" to prevent current unending curl connection

Also prevent curl from having an unending connection by setting a max-time
Joe Ferguson преди 3 години
родител
ревизия
2ae0c98974
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      test/tests/ghost-basics/run.sh

+ 1 - 1
test/tests/ghost-basics/run.sh

@@ -57,7 +57,7 @@ _request() {
 	docker run --rm \
 		--link "$cid":ghost \
 		"$clientImage" \
-		curl -fs -X"$method" "$@" "http://ghost:2368/$url"
+		curl -fs --max-time 15 -X"$method" "$@" "http://ghost:2368/${url#/}"
 }
 
 # Make sure that Ghost is listening and ready