Skip to content

Commit

Permalink
👽 Fix broken redis link in docs
Browse files Browse the repository at this point in the history
(cherry picked from commit 41310f7)
  • Loading branch information
sergei-maertens committed Jan 21, 2025
1 parent 281c5d8 commit 6e3e2ee
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,12 @@
r"https://stackoverflow\.com/.*", # SO 403s when running on github actions :/
r"https://sequencediagram\.org/index\.html", # anchor are not server side
r"https://www\.miniwebtool\.com/django-secret-key-generator/", # seems to block the requests user agent
r"https://json-schema\.org", # reached out to them, but no resolution yet
# our changelog generates many such links that slow down the link checks :)
r"https://github.com/open-formulieren/open-forms/issues/[0-9]+",
]

linkcheck_anchors_ignore_for_url = [
r"https://.*github.*",
]

extlinks = {
Expand Down
8 changes: 4 additions & 4 deletions docs/installation/redis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ certain period of time. By default, Redis will save the DB (see the default `red
* After 300 seconds (5 minutes) if at least 100 changes were performed
* After 60 seconds if at least 10000 changes were performed

.. _redis.conf file: https://redis.io/docs/management/config-file/
.. _redis.conf file: https://redis.io/docs/latest/operate/oss_and_stack/management/config-file/

If Redis is abruptly terminated and any changes have not been written to the DB, the data will be lost. For Open-Forms,
this means that Celery tasks that have been queued and have not yet been picked up by a worker might be lost.
Expand All @@ -50,10 +50,10 @@ Other (more complex) solutions are also possible, but out-of-scope for this docu
in the :ref:`installation_environment_config`).


.. _Redis sentinel: https://redis.io/docs/management/sentinel/
.. _AOF: https://redis.io/docs/management/persistence/
.. _Redis sentinel: https://redis.io/docs/latest/operate/oss_and_stack/management/sentinel/
.. _AOF: https://redis.io/docs/latest/operate/oss_and_stack/management/persistence/
.. _Redis cluster: https://redis.io/docs/latest/operate/oss_and_stack/management/scaling/
.. _replication: https://redis.io/docs/management/replication/
.. _replication: https://redis.io/docs/latest/operate/oss_and_stack/management/replication/
.. _different broker: https://docs.celeryq.dev/en/stable/getting-started/first-steps-with-celery.html#configuration

Deploying multiple Redis instances
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/forms/examples/decision_tree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ Formulier maken

* Tab **Weergave**

* "U betaald voor 1 hond hondenbelasting. U kunt het formulier
`hier <http://example.com>`__ invullen."
* "U betaalt voor 1 hond hondenbelasting. U kunt het formulier
`hier <https://example.com>`__ invullen."

* Tab **Geavanceerd**

Expand Down

0 comments on commit 6e3e2ee

Please sign in to comment.