Update requirements from OS Global Requirements.

Update requirements.txt and test-requirements.txt from Global Requirements
defined into openstack/requirements project (stable/liberty).

Change-Id: I9ecbf5a7fb2c38624cc4f52b13515f8af75a4889
Closes-Bug: #1513118
This commit is contained in:
David TARDIVEL
2015-11-23 15:35:10 +01:00
committed by Vincent Françoise
parent 7c52a1448d
commit 7c8acebcb2
16 changed files with 50 additions and 247 deletions

View File

@@ -25,6 +25,7 @@ from oslo_config import cfg
from oslo_log import log as logging
from watcher.applier.framework.manager_applier import ApplierManager
from watcher.common import service
from watcher import i18n
LOG = logging.getLogger(__name__)
@@ -33,8 +34,7 @@ _LI = i18n._LI
def main():
cfg.CONF(sys.argv[1:], project='python-watcher')
logging.setup(CONF, 'watcher')
service.prepare_service(sys.argv)
LOG.info(_LI('Starting server in PID %s') % os.getpid())
LOG.debug("Configuration:")

View File

@@ -23,6 +23,7 @@ import sys
from oslo_config import cfg
from oslo_log import log as logging
from watcher.common import service
from watcher.decision_engine.framework.manager import DecisionEngineManager
from watcher import i18n
@@ -34,8 +35,7 @@ _LI = i18n._LI
def main():
cfg.CONF(sys.argv[1:], project='python-watcher')
logging.setup(CONF, 'watcher')
service.prepare_service(sys.argv)
LOG.info(_LI('Starting server in PID %s') % os.getpid())
LOG.debug("Configuration:")