nebu 0.1.109__py3-none-any.whl → 0.1.111__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.
- nebu/processors/processor.py +4 -4
- {nebu-0.1.109.dist-info → nebu-0.1.111.dist-info}/METADATA +1 -1
- {nebu-0.1.109.dist-info → nebu-0.1.111.dist-info}/RECORD +6 -6
- {nebu-0.1.109.dist-info → nebu-0.1.111.dist-info}/WHEEL +0 -0
- {nebu-0.1.109.dist-info → nebu-0.1.111.dist-info}/licenses/LICENSE +0 -0
- {nebu-0.1.109.dist-info → nebu-0.1.111.dist-info}/top_level.txt +0 -0
nebu/processors/processor.py
CHANGED
@@ -534,23 +534,23 @@ class Processor(Generic[InputType, OutputType]):
|
|
534
534
|
wait=True,
|
535
535
|
timeout=30.0, # Short timeout for individual health check
|
536
536
|
)
|
537
|
+
logger.info(f">>> Health check response: {response}")
|
537
538
|
|
538
539
|
# Check if the response indicates health
|
539
540
|
if response and isinstance(response, dict):
|
540
541
|
status = response.get("status")
|
541
|
-
|
542
|
-
if status == "success" and content.get("status") == "healthy":
|
542
|
+
if status == "healthy":
|
543
543
|
logger.info(
|
544
544
|
f"Processor {self.processor.metadata.name} is healthy!"
|
545
545
|
)
|
546
546
|
return
|
547
547
|
|
548
|
-
logger.
|
548
|
+
logger.info(
|
549
549
|
f"Health check attempt failed, retrying in {retry_interval}s..."
|
550
550
|
)
|
551
551
|
|
552
552
|
except Exception as e:
|
553
|
-
logger.
|
553
|
+
logger.info(
|
554
554
|
f"Health check failed with error: {e}, retrying in {retry_interval}s..."
|
555
555
|
)
|
556
556
|
|
@@ -18,11 +18,11 @@ nebu/processors/consumer_process_worker.py,sha256=h--eNFKaLbUayxn88mB8oGGdrU2liE
|
|
18
18
|
nebu/processors/decorate.py,sha256=aT6TT8QOOpl8HKo8kYdwmX6785_l9kSfoyUSPp4tkuY,58726
|
19
19
|
nebu/processors/default.py,sha256=cy4ETMdbdRGkrvbYec1o60h7mGDlGN5JsuUph0ENtDU,364
|
20
20
|
nebu/processors/models.py,sha256=g4B1t6Rgoy-NUEHBLeQc0EENzHXLDlWSio8Muv7cTDU,4093
|
21
|
-
nebu/processors/processor.py,sha256=
|
21
|
+
nebu/processors/processor.py,sha256=vIK_z25qRpNcewBzNSIOiv-qXM9NgKK79zYyerdRHpo,21956
|
22
22
|
nebu/redis/models.py,sha256=coPovAcVXnOU1Xh_fpJL4PO3QctgK9nBe5QYoqEcnxg,1230
|
23
23
|
nebu/services/service.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
nebu-0.1.
|
25
|
-
nebu-0.1.
|
26
|
-
nebu-0.1.
|
27
|
-
nebu-0.1.
|
28
|
-
nebu-0.1.
|
24
|
+
nebu-0.1.111.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
25
|
+
nebu-0.1.111.dist-info/METADATA,sha256=omrvBdWrjznnHFviA2CP04bGhfq6NcaLKcVBaAPQVhw,1798
|
26
|
+
nebu-0.1.111.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
27
|
+
nebu-0.1.111.dist-info/top_level.txt,sha256=uLIbEKJeGSHWOAJN5S0i5XBGwybALlF9bYoB1UhdEgQ,5
|
28
|
+
nebu-0.1.111.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|