[clean] remove pyramid warning about looping task
This warning isn't useful anymore.
--- 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)