watcher.applier.messaging.trigger

Source code for watcher.applier.messaging.trigger

# -*- encoding: utf-8 -*-
# Copyright (c) 2015 b<>com
#
# Authors: Jean-Emile DARTOIS <jean-emile.dartois@b-com.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from concurrent import futures

from oslo_config import cfg
from oslo_log import log

from watcher.applier.action_plan import default

LOG = log.getLogger(__name__)
CONF = cfg.CONF


[docs]class TriggerActionPlan(object): def __init__(self, applier_manager): self.applier_manager = applier_manager workers = CONF.watcher_applier.workers self.executor = futures.ThreadPoolExecutor(max_workers=workers)
[docs] def do_launch_action_plan(self, context, action_plan_uuid): try: cmd = default.DefaultActionPlanHandler(context, self.applier_manager, action_plan_uuid) cmd.execute() except Exception as e: LOG.exception(e)
[docs] def launch_action_plan(self, context, action_plan_uuid): LOG.debug("Trigger ActionPlan %s", action_plan_uuid) # submit self.executor.submit(self.do_launch_action_plan, context, action_plan_uuid) return action_plan_uuid
Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.