From a8b2236d38a395e15b67a8b0a7262f5a6b86fd51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 22 Jul 2017 09:14:40 +0200 Subject: [PATCH] ctl: ignore error_log in collectstatic calls as it's run as root (#17761) --- wcs/ctl/collectstatic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wcs/ctl/collectstatic.py b/wcs/ctl/collectstatic.py index 596777c9..2877d340 100644 --- a/wcs/ctl/collectstatic.py +++ b/wcs/ctl/collectstatic.py @@ -34,6 +34,7 @@ class CmdCollectStatic(Command): def execute(self, base_options, sub_options, args): import publisher publisher.WcsPublisher.configure(self.config) + publisher.WcsPublisher.ERROR_LOG = None pub = publisher.WcsPublisher.create_publisher( register_cron=False, register_tld_names=False) return self.collectstatic(pub, -- 2.13.3