Skip to content

Commit

Permalink
update expected test values
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Jan 29, 2025
1 parent 065723b commit 3485cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions expected/http.out
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ SHOW http.CURLOPT_CAINFO;

-- reset it
RESET http.CURLOPT_CAINFO;
SELECT status FROM http_get('http://localhost:9080/delay/7');
SELECT status FROM http_get(current_setting('http.server_host') || '/delay/7');
status
--------
200
Expand All @@ -306,7 +306,7 @@ SET statement_timeout = 200;
CREATE TEMPORARY TABLE timer AS
SELECT now() AS start;
SELECT *
FROM http_get('http://localhost:9080/delay/7');
FROM http_get(current_setting('http.server_host') || '/delay/7');
ERROR: HTTP request cancelled
SELECT round(extract(epoch FROM now() - start) * 10) AS m
FROM timer;
Expand Down

0 comments on commit 3485cb1

Please # to comment.