summaryrefslogtreecommitdiff
path: root/doc/build/orm
diff options
context:
space:
mode:
authorAdam Chainz <adam@adamj.eu>2016-05-29 14:28:55 +0100
committerAdam Chainz <adam@adamj.eu>2016-05-29 14:28:55 +0100
commit513a045395b4cb5d8e1a9deb69bc9761d79eee37 (patch)
tree5ff66efc419b1bec9f2d08bf0931e85da30a5ebb /doc/build/orm
parent4856493efc1f6b7fdecf36e020a95636f600a626 (diff)
downloadsqlalchemy-pr/278.tar.gz
Convert readthedocs link for their .org -> .io migration for hosted projectspr/278
As per their email ‘Changes to project subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
Diffstat (limited to 'doc/build/orm')
-rw-r--r--doc/build/orm/session_basics.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/session_basics.rst b/doc/build/orm/session_basics.rst
index 0f96ba50a..198603b18 100644
--- a/doc/build/orm/session_basics.rst
+++ b/doc/build/orm/session_basics.rst
@@ -410,7 +410,7 @@ by default. This also defeats the purpose of using the Session as a cache.
The :class:`.Session` is not designed to be a
global object from which everyone consults as a "registry" of objects.
That's more the job of a **second level cache**. SQLAlchemy provides
-a pattern for implementing second level caching using `dogpile.cache <http://dogpilecache.readthedocs.org/>`_,
+a pattern for implementing second level caching using `dogpile.cache <https://dogpilecache.readthedocs.io/>`_,
via the :ref:`examples_caching` example.
How can I get the :class:`~sqlalchemy.orm.session.Session` for a certain object?