From c76d112c3167be1c2a30e8e0b02324b9b609ad1a Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Thu, 10 Aug 2023 09:09:44 -0700 Subject: [PATCH] Change host used for delay test --- expected/http.out | 2 +- sql/http.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/expected/http.out b/expected/http.out index 3bd935a..beab06f 100644 --- a/expected/http.out +++ b/expected/http.out @@ -230,7 +230,7 @@ SELECT http_set_curlopt('CURLOPT_TIMEOUT_MS', '10000'); t (1 row) -SELECT status FROM http_get('http://httpstat.us/200?sleep=7000'); +SELECT status FROM http_get('https://httpbun.org/delay/7'); status -------- 200 diff --git a/sql/http.sql b/sql/http.sql index f8ff79b..a64579c 100644 --- a/sql/http.sql +++ b/sql/http.sql @@ -146,4 +146,4 @@ SELECT status FROM http_get('https://httpbun.org/status/555'); -- Alter the default timeout and then run a query that is longer than -- the default (5s), but shorter than the new timeout SELECT http_set_curlopt('CURLOPT_TIMEOUT_MS', '10000'); -SELECT status FROM http_get('http://httpstat.us/200?sleep=7000'); +SELECT status FROM http_get('https://httpbun.org/delay/7');