Re: faulty link

From: Dagfinn Ilmari Mannsåker <ilmari(at)ilmari(dot)org>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Josef Šimánek <josef(dot)simanek(at)gmail(dot)com>, Erik Rijkers <er(at)xs4all(dot)nl>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: faulty link
Date: 2022-02-10 15:53:02
Message-ID: 877da2zpk1.fsf@wibble.ilmari.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> writes:

> =?UTF-8?B?Sm9zZWYgxaBpbcOhbmVr?= <josef(dot)simanek(at)gmail(dot)com> writes:
>> čt 10. 2. 2022 v 15:35 odesílatel Erik Rijkers <er(at)xs4all(dot)nl> napsal:
>>> The provided link
>>> https://www.postgresql.org/docs/release/
>>> leads to
>>> https://www.postgresql.org/docs/release/14.2/
>>> which gives 'Not Found' for me (Netherlands)
>
>> Thinking about that again, the 14.2 release just happened. Could it be
>> just a matter of propagating new release info to mirrors?
>
> The link works for me, too (USA). Stale cache seems like a reasonable
> explanation for the OP's problem --- maybe clearing browser cache
> would help?

I'm getting a 404 as well from London. After trying multiple times with
curl I did get one 200 response, but it's mostly 404s.

It looks like some of the mirrors have it, but not all:

$ for h in $(dig +short -tA www.mirrors.postgresql.org); do echo -n "$h: "; curl -i -k -s -HHost:www.postgresql.org "https://$h/docs/release/14.2/" | grep ^HTTP; done
72.32.157.230: HTTP/2 200
87.238.57.232: HTTP/2 404
217.196.149.50: HTTP/2 200

$ for h in $(dig +short -tAAAA www.mirrors.postgresql.org); do echo -n "$h: "; curl -i -k -s -HHost:www.postgresql.org "https://[$h]/docs/release/14.2/" | grep ^HTTP; done
2001:4800:3e1:1::230: HTTP/2 200
2a02:c0:301:0:ffff::32: HTTP/2 404
2a02:16a8:dc51::50: HTTP/2 200

> regards, tom lane

- ilmari

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Fujii Masao 2022-02-10 16:00:03 Re: Add checkpoint and redo LSN to LogCheckpointEnd log message
Previous Message Fujii Masao 2022-02-10 15:47:50 Re: Logging in LockBufferForCleanup()