Skip to content

Commit

Permalink
Merge pull request #1568 from huge-success/deprecate-route-removal
Browse files Browse the repository at this point in the history
deprecation: deprecate the use of remove_route
  • Loading branch information
yunstanford committed May 10, 2019
2 parents cb10e26 + bd89c7f commit 25e2151
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sanic/app.py
Expand Up @@ -555,12 +555,22 @@ def remove_route(self, uri, clean_cache=True, host=None):
This method provides the app user a mechanism by which an already
existing route can be removed from the :class:`Sanic` object
.. warning::
remove_route is deprecated in v19.06 and will be removed
from future versions.
:param uri: URL Path to be removed from the app
:param clean_cache: Instruct sanic if it needs to clean up the LRU
route cache
:param host: IP address or FQDN specific to the host
:return: None
"""
warnings.warn(
"remove_route is deprecated and will be removed "
"from future versions.",
DeprecationWarning,
stacklevel=2,
)
self.router.remove(uri, clean_cache, host)

# Decorator
Expand Down

0 comments on commit 25e2151

Please sign in to comment.