This repository was archived by the owner on Sep 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Providers/nxOMSAutomationWorker/automationworker Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ endif
316
316
317
317
nxOMSAutomationWorker :
318
318
rm -rf output/staging; \
319
- VERSION=" 1.7.10 .0" ; \
319
+ VERSION=" 1.8.0 .0" ; \
320
320
PROVIDERS=" nxOMSAutomationWorker" ; \
321
321
STAGINGDIR=" output/staging/$@ /DSCResources" ; \
322
322
cat Providers/Modules/$@ .psd1 | sed " s@<MODULE_VERSION>@$$ {VERSION}@" > intermediate/Modules/$@ .psd1; \
Original file line number Diff line number Diff line change 58
58
DEFAULT_VM_ID = DEFAULT_UNKNOWN
59
59
DEFAULT_WORKER_TYPE = DEFAULT_UNKNOWN
60
60
DEFAULT_COMPONENT = DEFAULT_UNKNOWN
61
- DEFAULT_WORKER_VERSION = "1.7.10 .0"
61
+ DEFAULT_WORKER_VERSION = "1.8.0 .0"
62
62
DEFAULT_JRDS_POLLING_FREQUENCY = "15"
63
63
64
64
# state configuration keys
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ def execute_runbook(self):
139
139
140
140
# wait for runbook execution to complete
141
141
pending_action = None
142
- while stream_handler .isAlive () or self .runtime .runbook_subprocess .poll () is None :
142
+ while stream_handler .is_alive () or self .runtime .runbook_subprocess .poll () is None :
143
143
try :
144
144
pending_action = self .msg_queue .get (block = False )
145
145
tracer .log_sandbox_job_pending_action_detected (self .job_id , pending_action )
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ def stop_tracking_terminated_jobs():
99
99
100
100
# clean up finished jobs
101
101
for job_id , job_tuple in list (job_map .items ()):
102
- if job_tuple [0 ].isAlive () is False :
102
+ if job_tuple [0 ].is_alive () is False :
103
103
try :
104
104
job_tuple [2 ].get (block = False )
105
105
raise SandboxRuntimeException ()
Original file line number Diff line number Diff line change 56
56
DEFAULT_VM_ID = DEFAULT_UNKNOWN
57
57
DEFAULT_WORKER_TYPE = DEFAULT_UNKNOWN
58
58
DEFAULT_COMPONENT = DEFAULT_UNKNOWN
59
- DEFAULT_WORKER_VERSION = "1.7.10 .0"
59
+ DEFAULT_WORKER_VERSION = "1.8.0 .0"
60
60
DEFAULT_JRDS_POLLING_FREQUENCY = "15"
61
61
62
62
# state configuration keys
Original file line number Diff line number Diff line change 55
55
DEFAULT_VM_ID = DEFAULT_UNKNOWN
56
56
DEFAULT_WORKER_TYPE = DEFAULT_UNKNOWN
57
57
DEFAULT_COMPONENT = DEFAULT_UNKNOWN
58
- DEFAULT_WORKER_VERSION = "1.7.10 .0"
58
+ DEFAULT_WORKER_VERSION = "1.8.0 .0"
59
59
DEFAULT_JRDS_POLLING_FREQUENCY = "15"
60
60
61
61
# state configuration keys
You can’t perform that action at this time.
0 commit comments