Merge "remove unused LOG"

This commit is contained in:
Jenkins 2016-07-11 17:02:50 +00:00 committed by Gerrit Code Review
commit 613181f571
3 changed files with 0 additions and 9 deletions

View File

@ -15,13 +15,10 @@
# under the License. # under the License.
from taskflow.engines.action_engine.actions import base from taskflow.engines.action_engine.actions import base
from taskflow import logging
from taskflow import retry as retry_atom from taskflow import retry as retry_atom
from taskflow import states from taskflow import states
from taskflow.types import failure from taskflow.types import failure
LOG = logging.getLogger(__name__)
class RetryAction(base.Action): class RetryAction(base.Action):
"""An action that handles executing, state changes, ... of retry atoms.""" """An action that handles executing, state changes, ... of retry atoms."""

View File

@ -19,7 +19,6 @@ import abc
import futurist import futurist
import six import six
from taskflow import logging
from taskflow import task as ta from taskflow import task as ta
from taskflow.types import failure from taskflow.types import failure
from taskflow.types import notifier from taskflow.types import notifier
@ -28,8 +27,6 @@ from taskflow.types import notifier
EXECUTED = 'executed' EXECUTED = 'executed'
REVERTED = 'reverted' REVERTED = 'reverted'
LOG = logging.getLogger(__name__)
def _execute_retry(retry, arguments): def _execute_retry(retry, arguments):
try: try:

View File

@ -24,13 +24,10 @@ from oslo_utils import uuidutils
import six import six
from taskflow import exceptions as exc from taskflow import exceptions as exc
from taskflow import logging
from taskflow import states from taskflow import states
from taskflow.types import failure as ft from taskflow.types import failure as ft
from taskflow.utils import misc from taskflow.utils import misc
LOG = logging.getLogger(__name__)
# Internal helpers... # Internal helpers...