Merge "remove unused LOG"
This commit is contained in:
@@ -15,13 +15,10 @@
|
||||
# under the License.
|
||||
|
||||
from taskflow.engines.action_engine.actions import base
|
||||
from taskflow import logging
|
||||
from taskflow import retry as retry_atom
|
||||
from taskflow import states
|
||||
from taskflow.types import failure
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class RetryAction(base.Action):
|
||||
"""An action that handles executing, state changes, ... of retry atoms."""
|
||||
|
||||
@@ -19,7 +19,6 @@ import abc
|
||||
import futurist
|
||||
import six
|
||||
|
||||
from taskflow import logging
|
||||
from taskflow import task as ta
|
||||
from taskflow.types import failure
|
||||
from taskflow.types import notifier
|
||||
@@ -28,8 +27,6 @@ from taskflow.types import notifier
|
||||
EXECUTED = 'executed'
|
||||
REVERTED = 'reverted'
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def _execute_retry(retry, arguments):
|
||||
try:
|
||||
|
||||
@@ -24,13 +24,10 @@ from oslo_utils import uuidutils
|
||||
import six
|
||||
|
||||
from taskflow import exceptions as exc
|
||||
from taskflow import logging
|
||||
from taskflow import states
|
||||
from taskflow.types import failure as ft
|
||||
from taskflow.utils import misc
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
# Internal helpers...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user