You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Failed test at t/issue32.t line 17.
# got: 'Set-Cookie3: a="b;c;\"d"; path="/"; domain=example.com; path_spec; expires="2021-11-06 08:58:35Z"; version=0
# '
# expected: 'Set-Cookie3: a="b;c;\"d"; path="/"; domain=example.com; path_spec; expires="2021-11-06 08:58:34Z"; version=0
# '
# Looks like you failed 1 test of 3.
t/issue32.t ............
Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/3 subtests
It's almost not reproducible unless an artifical delay is introduced in extract_cookies, e.g. like this:
--- ../lib/HTTP/Cookies.pm 2020-01-11 12:13:42.133285382 +0100
+++ lib/HTTP/Cookies.pm 2020-01-11 12:14:53.672458289 +0100
@@ -211,6 +211,7 @@
# can for instance contain an unquoted "," in the expires
# field, so we have to use this ad-hoc parser.
my $now = time();
+sleep 1;
# Build a hash of cookies that was present in Set-Cookie2
# headers. We need to skip them if we also find them in a
The text was updated successfully, but these errors were encountered:
One of my smoker reported the following failure:
It's almost not reproducible unless an artifical delay is introduced in
extract_cookies
, e.g. like this:The text was updated successfully, but these errors were encountered: