diff options
author | https://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web> | 2014-04-13 15:57:33 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-04-13 15:57:33 -0400 |
commit | d3e3192238f5692ef01db0735a862267c83d412b (patch) | |
tree | d39216ebb25f31ac820a6dc8aed5048c587e4ff2 /doc | |
parent | a9b3c1d3fa04ca6aff3cd2d9592c81a11f9f0f11 (diff) | |
download | ikiwiki-d3e3192238f5692ef01db0735a862267c83d412b.tar ikiwiki-d3e3192238f5692ef01db0735a862267c83d412b.tar.gz |
reproduceable
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn b/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn index 9cffe24dc..fccb54717 100644 --- a/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn +++ b/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn @@ -112,3 +112,24 @@ I filed this bug in the Debian BTS as [#702124](https://bugs.debian.org/cgi-bin/ 500 Can't read entity body: Resource temporarily unavailable ... yet the commandline client works fine... I'm out of ideas for this sucker. + +Update: i found a way to reproduce the problem even with LWPx::ParanoidAgent 1.07: + +~~~~ +$ perl -e 'use LWPx::ParanoidAgent; + print $LWPx::ParanoidAgent::VERSION, " $]\n"; + $ua = new LWPx::ParanoidAgent; for (my $i = 0; $i< 10 ; $i++) { $c = LWPx::ParanoidAgent->new->get + ("https://id.koumbit.net/anarcat") + ->decoded_content; if (length($c) < 100) { print $c; } else { print length($c),"\n";}}' +1.07 5.018002 +5720 +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +500 Can't read entity body: Ressource temporairement non disponible +~~~~ |