[server config] on quick start, system source is still activated. Closes #2535714 stable
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 11 Dec 2012 16:14:57 +0100
branchstable
changeset 8613 9d792e9f1c79
parent 8612 3bb96935a6b9
child 8614 52f576a7394c
[server config] on quick start, system source is still activated. Closes #2535714
server/serverconfig.py
--- a/server/serverconfig.py	Tue Dec 11 17:07:57 2012 +0100
+++ b/server/serverconfig.py	Tue Dec 11 16:14:57 2012 +0100
@@ -1,4 +1,4 @@
-# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
+# copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
 #
 # This file is part of CubicWeb.
@@ -292,7 +292,7 @@
                 return True
             return source.uri in self.sources_mode
         if self.quick_start:
-            return False
+            return source.uri == 'system'
         return (not source.disabled and (
             not self.enabled_sources or source.uri in self.enabled_sources))