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
316316
317317nxOMSAutomationWorker :
318318 rm -rf output/staging; \
319- VERSION=" 1.7.10 .0" ; \
319+ VERSION=" 1.8.0 .0" ; \
320320 PROVIDERS=" nxOMSAutomationWorker" ; \
321321 STAGINGDIR=" output/staging/$@ /DSCResources" ; \
322322 cat Providers/Modules/$@ .psd1 | sed " s@<MODULE_VERSION>@$$ {VERSION}@" > intermediate/Modules/$@ .psd1; \
Original file line number Diff line number Diff line change 5858DEFAULT_VM_ID = DEFAULT_UNKNOWN
5959DEFAULT_WORKER_TYPE = DEFAULT_UNKNOWN
6060DEFAULT_COMPONENT = DEFAULT_UNKNOWN
61- DEFAULT_WORKER_VERSION = "1.7.10 .0"
61+ DEFAULT_WORKER_VERSION = "1.8.0 .0"
6262DEFAULT_JRDS_POLLING_FREQUENCY = "15"
6363
6464# state configuration keys
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ def execute_runbook(self):
139139
140140 # wait for runbook execution to complete
141141 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 :
143143 try :
144144 pending_action = self .msg_queue .get (block = False )
145145 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():
9999
100100 # clean up finished jobs
101101 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 :
103103 try :
104104 job_tuple [2 ].get (block = False )
105105 raise SandboxRuntimeException ()
Original file line number Diff line number Diff line change 5656DEFAULT_VM_ID = DEFAULT_UNKNOWN
5757DEFAULT_WORKER_TYPE = DEFAULT_UNKNOWN
5858DEFAULT_COMPONENT = DEFAULT_UNKNOWN
59- DEFAULT_WORKER_VERSION = "1.7.10 .0"
59+ DEFAULT_WORKER_VERSION = "1.8.0 .0"
6060DEFAULT_JRDS_POLLING_FREQUENCY = "15"
6161
6262# state configuration keys
Original file line number Diff line number Diff line change 5555DEFAULT_VM_ID = DEFAULT_UNKNOWN
5656DEFAULT_WORKER_TYPE = DEFAULT_UNKNOWN
5757DEFAULT_COMPONENT = DEFAULT_UNKNOWN
58- DEFAULT_WORKER_VERSION = "1.7.10 .0"
58+ DEFAULT_WORKER_VERSION = "1.8.0 .0"
5959DEFAULT_JRDS_POLLING_FREQUENCY = "15"
6060
6161# state configuration keys
You can’t perform that action at this time.
0 commit comments