Skip to content
This repository was archived by the owner on Feb 24, 2024. It is now read-only.

Commit 8869c17

Browse files
docs: Fix broken stackoverflow link
1 parent 4db748a commit 8869c17

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/conf.py

+4
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,10 @@ def setup(app):
297297
# taken from https://github.com/sphinx-doc/sphinx/blob/82dad44e5bd3776ecb6fd8ded656bc8151d0e63d/sphinx/util/requests.py#L42
298298
user_agent = 'Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0'
299299

300+
# TODO: stackoverflow only returns 403 right now. We might need to come back later to check whether that's
301+
# a permanent issue or not.
302+
linkcheck_ignore = [r'https://stackoverflow.com/']
303+
300304
# sphinx-tabs configuration
301305
sphinx_tabs_disable_tab_closing = True
302306

docs/how-tos/sql-user-management-using-postgres-users-and-passwords.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Concerning the `pgjwt extension <https://github.com/michelp/pgjwt>`_, please cf.
5252
CREATE EXTENSION IF NOT EXISTS pgjwt WITH SCHEMA ext_pgjwt;
5353
5454
55-
In order to be able to work with postgres' SCRAM-SHA-256 password hashes, we also need the PBKDF2 key derivation function. Luckily there is `a PL/pgSQL implementation on stackoverflow <https://stackoverflow.com/q/47162200/2337147>`_:
55+
In order to be able to work with postgres' SCRAM-SHA-256 password hashes, we also need the PBKDF2 key derivation function. Luckily there is `a PL/pgSQL implementation on stackoverflow <https://stackoverflow.com/a/72805848>`_:
5656

5757
.. code-block:: plpgsql
5858

0 commit comments

Comments
 (0)