From cdd171671745f7e8091769e779abd8ff4596479e Mon Sep 17 00:00:00 2001 From: Slaven Rezic Date: Mon, 26 Jun 2023 22:54:32 +0200 Subject: [PATCH] switch to httpbingo.org This seems to be more reliable than httpbin.org nowadays. See also discussion in https://github.com/postmanlabs/httpbin/issues/703 --- t/lwp-http-tiny.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/lwp-http-tiny.t b/t/lwp-http-tiny.t index 7b65926..d547e64 100644 --- a/t/lwp-http-tiny.t +++ b/t/lwp-http-tiny.t @@ -19,7 +19,8 @@ if (!eval { require HTTP::Tiny; 1 }) { my $ua = HTTP::Tiny->new(timeout => 20); #my $httpbin_url = 'https://httpbin.org'; -my $httpbin_url = 'http://eu.httpbin.org'; +#my $httpbin_url = 'http://eu.httpbin.org'; +my $httpbin_url = 'http://httpbingo.org'; { my $resp = $ua->get($httpbin_url);