mrok 0.8.3__py3-none-any.whl → 0.8.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mrok/proxy/master.py +4 -2
- {mrok-0.8.3.dist-info → mrok-0.8.5.dist-info}/METADATA +5 -1
- {mrok-0.8.3.dist-info → mrok-0.8.5.dist-info}/RECORD +6 -6
- {mrok-0.8.3.dist-info → mrok-0.8.5.dist-info}/WHEEL +0 -0
- {mrok-0.8.3.dist-info → mrok-0.8.5.dist-info}/entry_points.txt +0 -0
- {mrok-0.8.3.dist-info → mrok-0.8.5.dist-info}/licenses/LICENSE.txt +0 -0
mrok/proxy/master.py
CHANGED
|
@@ -158,6 +158,7 @@ class MasterBase(ABC):
|
|
|
158
158
|
self.start_events_router()
|
|
159
159
|
self.start_workers()
|
|
160
160
|
self.monitor_thread.start()
|
|
161
|
+
self.pause_event.set()
|
|
161
162
|
|
|
162
163
|
def stop_events_router(self):
|
|
163
164
|
self.zmq_pubsub_router_process.stop(sigint_timeout=5, sigkill_timeout=1)
|
|
@@ -169,16 +170,17 @@ class MasterBase(ABC):
|
|
|
169
170
|
self.worker_processes.clear()
|
|
170
171
|
|
|
171
172
|
def stop(self):
|
|
173
|
+
self.pause_event.clear()
|
|
172
174
|
if self.monitor_thread.is_alive(): # pragma: no branch
|
|
173
175
|
self.monitor_thread.join(timeout=MONITOR_THREAD_JOIN_TIMEOUT)
|
|
174
176
|
self.stop_workers()
|
|
175
177
|
self.stop_events_router()
|
|
176
178
|
|
|
177
179
|
def restart(self):
|
|
178
|
-
self.pause_event.
|
|
180
|
+
self.pause_event.clear()
|
|
179
181
|
self.stop_workers()
|
|
180
182
|
self.start_workers()
|
|
181
|
-
self.pause_event.
|
|
183
|
+
self.pause_event.set()
|
|
182
184
|
|
|
183
185
|
def monitor_workers(self):
|
|
184
186
|
while not self.stop_event.is_set():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mrok
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.5
|
|
4
4
|
Summary: MPT Extensions OpenZiti Orchestrator
|
|
5
5
|
Author: SoftwareOne AG
|
|
6
6
|
License: Apache License
|
|
@@ -233,6 +233,10 @@ Description-Content-Type: text/markdown
|
|
|
233
233
|
|
|
234
234
|
# mrok
|
|
235
235
|
|
|
236
|
+

|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
236
240
|
**mrok** provides the communication channel that allows the Marketplace Platform Extensions to securely expose their web applications to the platform without requiring inbound connectivity.
|
|
237
241
|
It uses the [OpenZiti](https://openziti.io) zero-trust network overlay to create encrypted tunnels initiated from the Extension side, enabling operation even behind corporate firewalls.
|
|
238
242
|
|
|
@@ -72,7 +72,7 @@ mrok/proxy/asgi.py,sha256=2uw5bLquyUsiYlNwq8RhJd8OqVvSJDvYjzOVGLLB3Cs,3528
|
|
|
72
72
|
mrok/proxy/backend.py,sha256=dRmIUJin2DM3PUxrVX0j4t1oB6DOX7N9JV2lIcopE38,1649
|
|
73
73
|
mrok/proxy/event_publisher.py,sha256=TAuwEqIhRYxgazJFgC3DekwUAXlJ2UFjbdx_A9vwA1g,2511
|
|
74
74
|
mrok/proxy/exceptions.py,sha256=61OhdihQNdnBUqAI9mbBkXD1yWg-6Eftk7EhWCU1VF0,642
|
|
75
|
-
mrok/proxy/master.py,sha256=
|
|
75
|
+
mrok/proxy/master.py,sha256=Ddko0axBDYHs3FtlVnrF2regIIfefczIP7W38ZybL_s,6955
|
|
76
76
|
mrok/proxy/metrics.py,sha256=Sg2aIiaj9fzkyu190YCsJvNn5P-XLun3BcvuVBsdWbA,3640
|
|
77
77
|
mrok/proxy/middleware.py,sha256=So024RvtNgMliClKz4pzau2Wb6tlfZGspmHBzzEeF4U,4208
|
|
78
78
|
mrok/proxy/models.py,sha256=VDou3LGDi9zCpzpOwihP4Og1oRvXl7gb2mgczf6_Z14,6029
|
|
@@ -90,8 +90,8 @@ mrok/ziti/errors.py,sha256=yYCbVDwktnR0AYduqtynIjo73K3HOhIrwA_vQimvEd4,368
|
|
|
90
90
|
mrok/ziti/identities.py,sha256=cOMv-Jv8MEjtzyjRcWOF8Ziz4HJY2Z-uHXWpZRqgPxs,6883
|
|
91
91
|
mrok/ziti/pki.py,sha256=o2tySqHC8-7bvFuI2Tqxg9vX6H6ZSxWxfP_9x29e19M,1954
|
|
92
92
|
mrok/ziti/services.py,sha256=P2c9qRUyUFu1pSKPdT8L6s3yTKYVpTabRiHPWqbBIiU,3231
|
|
93
|
-
mrok-0.8.
|
|
94
|
-
mrok-0.8.
|
|
95
|
-
mrok-0.8.
|
|
96
|
-
mrok-0.8.
|
|
97
|
-
mrok-0.8.
|
|
93
|
+
mrok-0.8.5.dist-info/METADATA,sha256=UzVoOhhkua7GK0TaAFzLtfU_KlSPCnN_9fDm5t34M3Y,16011
|
|
94
|
+
mrok-0.8.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
95
|
+
mrok-0.8.5.dist-info/entry_points.txt,sha256=tloXwvU1uJicBJR2h-8HoVclPgwJWDwuREMHN8Zq-nU,38
|
|
96
|
+
mrok-0.8.5.dist-info/licenses/LICENSE.txt,sha256=6PaICaoA3yNsZKLv5G6OKqSfLSoX7MakYqTDgJoTCBs,11346
|
|
97
|
+
mrok-0.8.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|