deltafi 1.2.13__py3-none-any.whl → 1.2.14__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.
Potentially problematic release.
This version of deltafi might be problematic. Click here for more details.
deltafi/plugin.py
CHANGED
|
@@ -219,7 +219,8 @@ class Plugin(object):
|
|
|
219
219
|
for action in self.actions:
|
|
220
220
|
threading.Thread(target=self._do_action, args=(action,)).start()
|
|
221
221
|
|
|
222
|
-
threading.Thread(target=self._heartbeat)
|
|
222
|
+
hb_thread = threading.Thread(target=self._heartbeat)
|
|
223
|
+
hb_thread.start()
|
|
223
224
|
|
|
224
225
|
self.logger.info("All threads running")
|
|
225
226
|
|
|
@@ -227,6 +228,7 @@ class Plugin(object):
|
|
|
227
228
|
f.close()
|
|
228
229
|
|
|
229
230
|
self.logger.info("Application initialization complete")
|
|
231
|
+
hb_thread.join()
|
|
230
232
|
|
|
231
233
|
def _heartbeat(self):
|
|
232
234
|
long_running_actions = set()
|
|
@@ -8,7 +8,7 @@ deltafi/genericmodel.py,sha256=8VXWgFMjIwG4o3rkcLOa3bQH0Nf-T1Kw621QtMw-4q0,1090
|
|
|
8
8
|
deltafi/input.py,sha256=DuY280ZglZxEUkhjTtyr0g9Ohu2drn16UVhASH244nA,6290
|
|
9
9
|
deltafi/logger.py,sha256=q76R_Gn8BfcASH3Zy0V82m5ot34bjTnSELyKbjhvx3E,2136
|
|
10
10
|
deltafi/metric.py,sha256=eIDjZQVO53KuAFoEtjLNFwqMrp_7BC0Td9GLD1tb6sE,967
|
|
11
|
-
deltafi/plugin.py,sha256=
|
|
11
|
+
deltafi/plugin.py,sha256=gs9IuXKq7qBcSjkEH8Eew90q89pJYkeHjabDIZD70d0,13131
|
|
12
12
|
deltafi/result.py,sha256=KkFKewPxcP8_Slp0D2COJ43h5_fF5Vti9ocWtp8pjpc,14911
|
|
13
13
|
deltafi/storage.py,sha256=toq58EPZgzj2TfDF-YpFUmRnsWSjACA0KQAZzkM04xU,2740
|
|
14
14
|
deltafi/test_kit/__init__.py,sha256=qv6y7PpBG0ekTN9EuD9Lj8JYOLVqZA6tvHwgjplncAM,709
|
|
@@ -23,6 +23,6 @@ deltafi/test_kit/framework.py,sha256=5PTWoKu8eMU5GaVLmyoghoOrp6G65efXwqZKlUlyEaM
|
|
|
23
23
|
deltafi/test_kit/load.py,sha256=dzXZDjb5BKxM9F5E2B06ArnGy0HvE1kwPizL8VybsOQ,5055
|
|
24
24
|
deltafi/test_kit/transform.py,sha256=AZ5oamhaOm4yaR07_gCoTlDiHkd4KwiAWWNj3mnYp8Q,2706
|
|
25
25
|
deltafi/test_kit/validate.py,sha256=NnXD5amOE_9a4Zr-v9DKYIv5f_HvwtmlI-IdFtVp7ko,1933
|
|
26
|
-
deltafi-1.2.
|
|
27
|
-
deltafi-1.2.
|
|
28
|
-
deltafi-1.2.
|
|
26
|
+
deltafi-1.2.14.dist-info/METADATA,sha256=lm2hGbD0Y-S0F0MnashwZ7HdOcxGiCUR2Js2ydkKqzo,1434
|
|
27
|
+
deltafi-1.2.14.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
28
|
+
deltafi-1.2.14.dist-info/RECORD,,
|
|
File without changes
|