Skip to content

Commit

Permalink
Change host used for delay test
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Aug 10, 2023
1 parent 79781c2 commit c76d112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion expected/http.out
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sql/http.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');

0 comments on commit c76d112

Please sign in to comment.