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.
@@ -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
- content = response.get("content", {})
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.debug(
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.debug(
553
+ logger.info(
554
554
  f"Health check failed with error: {e}, retrying in {retry_interval}s..."
555
555
  )
556
556
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nebu
3
- Version: 0.1.109
3
+ Version: 0.1.111
4
4
  Summary: A globally distributed container runtime
5
5
  Requires-Python: >=3.10.14
6
6
  Description-Content-Type: text/markdown
@@ -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=PeJvxBPfjQ8uFqLcrGNk28yqBmqZC2VW4ssCsanZxYY,21985
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.109.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
25
- nebu-0.1.109.dist-info/METADATA,sha256=1p-dbBvbGZRBJA1Uv7xmYPHPV1MAhAEfSsOKGXVGifE,1798
26
- nebu-0.1.109.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
27
- nebu-0.1.109.dist-info/top_level.txt,sha256=uLIbEKJeGSHWOAJN5S0i5XBGwybALlF9bYoB1UhdEgQ,5
28
- nebu-0.1.109.dist-info/RECORD,,
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