# HG changeset patch # User Laurent Peuch # Date 1566439628 -7200 # Node ID c8ca784fdd77cf41fc336c7f286a5fbead560867 # Parent a6b12f31930c70028bfba15e355594ba405e93ee [clean] remove pyramid warning about looping task This warning isn't useful anymore. diff -r a6b12f31930c -r c8ca784fdd77 cubicweb/pyramid/pyramidctl.py --- a/cubicweb/pyramid/pyramidctl.py Tue Aug 27 14:26:21 2019 +0200 +++ b/cubicweb/pyramid/pyramidctl.py Thu Aug 22 04:07:08 2019 +0200 @@ -33,7 +33,6 @@ import time import threading import subprocess -import warnings from cubicweb import ExecutionError from cubicweb.cwconfig import CubicWebConfiguration as cwcfg @@ -382,10 +381,6 @@ url_scheme = ('https' if cwconfig['base-url'].startswith('https') else 'http') repo = app.application.registry['cubicweb.repository'] - warnings.warn( - 'the "pyramid" command does not start repository "looping tasks" ' - 'anymore; use the standalone "scheduler" command if needed' - ) try: waitress.serve(app, host=host, port=port, url_scheme=url_scheme, clear_untrusted_proxy_headers=True)