Merge "Fix instantiation of manager.AgentManager on cmd.polling.create_polling_service" into stable/train

This commit is contained in:
Zuul 2020-10-16 07:01:22 +00:00 committed by Gerrit Code Review
commit d77ad494ba
1 changed files with 1 additions and 2 deletions

View File

@ -84,8 +84,7 @@ def create_polling_service(worker_id, conf=None):
if conf is None:
conf = _prepare_config()
conf.log_opt_values(LOG, log.DEBUG)
return manager.AgentManager(worker_id,
conf)
return manager.AgentManager(worker_id, conf, conf.polling_namespaces)
def main():