summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-07-12 19:21:11 -0400
committerChris McDonough <chrism@plope.com>2011-07-12 19:21:11 -0400
commit94ab244f121fa1bf8df57f75fad9da5f5f39c594 (patch)
tree5f1acdbbdb2de3a500a87d14951542bae1f2408e /docs
parenta7ad42ee5d6ba2304423efaf5fd0c207268144f0 (diff)
downloadpyramid-94ab244f121fa1bf8df57f75fad9da5f5f39c594.tar.gz
pyramid-94ab244f121fa1bf8df57f75fad9da5f5f39c594.tar.bz2
pyramid-94ab244f121fa1bf8df57f75fad9da5f5f39c594.zip
- The ``Configurator.add_route`` method allowed two routes with the same
route to be added without an intermediate ``config.commit()``. If you now receive a ``ConfigurationError`` at startup time that appears to be ``add_route`` related, you'll need to either a) ensure that all of your route names are unique or b) call ``config.commit()`` before adding a second route with the name of a previously added name or c) use a Configurator that works in ``autocommit`` mode.
Diffstat (limited to 'docs')
-rw-r--r--docs/whatsnew-1.1.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/whatsnew-1.1.rst b/docs/whatsnew-1.1.rst
index 345cbfa30..b55b30238 100644
--- a/docs/whatsnew-1.1.rst
+++ b/docs/whatsnew-1.1.rst
@@ -497,6 +497,15 @@ Deprecations and Behavior Differences
exists in the renderer globals dictionary before setting an overriding
value.
+- The :meth:`pyramid.config.Configurator.add_route` method allowed two routes
+ with the same route to be added without an intermediate call to
+ :meth:`pyramid.config.Configurator.commit``. If you now receive a
+ ``ConfigurationError`` at startup time that appears to be ``add_route``
+ related, you'll need to either a) ensure that all of your route names are
+ unique or b) call ``config.commit()`` before adding a second route with the
+ name of a previously added name or c) use a Configurator that works in
+ ``autocommit`` mode.
+
Dependency Changes
------------------