This commit is contained in:
twangboy 2016-06-28 10:08:58 -07:00 committed by Mike Place
parent 54647eb7d8
commit cfc82f4004

View File

@ -30,6 +30,11 @@ try:
except ImportError:
pass
try:
import salt.ext.six.moves.socketserver as socketserver
except ImportError:
import socketserver
STATE_FUNCTION_RUNNING_RE = re.compile(
r'''The function (?:"|')(?P<state_func>.*)(?:"|') is running as PID '''
r'(?P<pid>[\d]+) and was started at (?P<date>.*) with jid (?P<jid>[\d]+)'