indexify 0.2.33__tar.gz → 0.2.34__tar.gz

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.
Files changed (34) hide show
  1. {indexify-0.2.33 → indexify-0.2.34}/PKG-INFO +1 -1
  2. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/agent.py +3 -3
  3. {indexify-0.2.33 → indexify-0.2.34}/pyproject.toml +1 -1
  4. {indexify-0.2.33 → indexify-0.2.34}/LICENSE.txt +0 -0
  5. {indexify-0.2.33 → indexify-0.2.34}/README.md +0 -0
  6. {indexify-0.2.33 → indexify-0.2.34}/indexify/__init__.py +0 -0
  7. {indexify-0.2.33 → indexify-0.2.34}/indexify/cli.py +0 -0
  8. {indexify-0.2.33 → indexify-0.2.34}/indexify/common_util.py +0 -0
  9. {indexify-0.2.33 → indexify-0.2.34}/indexify/data_loaders/__init__.py +0 -0
  10. {indexify-0.2.33 → indexify-0.2.34}/indexify/data_loaders/local_directory_loader.py +0 -0
  11. {indexify-0.2.33 → indexify-0.2.34}/indexify/data_loaders/url_loader.py +0 -0
  12. {indexify-0.2.33 → indexify-0.2.34}/indexify/error.py +0 -0
  13. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/api_objects.py +0 -0
  14. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/downloader.py +0 -0
  15. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/executor_tasks.py +0 -0
  16. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/function_worker.py +0 -0
  17. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/image_dependency_installer.py +0 -0
  18. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/indexify_executor.py +0 -0
  19. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/runtime_probes.py +0 -0
  20. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/task_reporter.py +0 -0
  21. {indexify-0.2.33 → indexify-0.2.34}/indexify/executor/task_store.py +0 -0
  22. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/data_objects.py +0 -0
  23. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/graph.py +0 -0
  24. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/graph_definition.py +0 -0
  25. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/graph_validation.py +0 -0
  26. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/image.py +0 -0
  27. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/indexify_functions.py +0 -0
  28. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/local_cache.py +0 -0
  29. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/object_serializer.py +0 -0
  30. {indexify-0.2.33 → indexify-0.2.34}/indexify/functions_sdk/pipeline.py +0 -0
  31. {indexify-0.2.33 → indexify-0.2.34}/indexify/http_client.py +0 -0
  32. {indexify-0.2.33 → indexify-0.2.34}/indexify/remote_graph.py +0 -0
  33. {indexify-0.2.33 → indexify-0.2.34}/indexify/remote_pipeline.py +0 -0
  34. {indexify-0.2.33 → indexify-0.2.34}/indexify/settings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: indexify
3
- Version: 0.2.33
3
+ Version: 0.2.34
4
4
  Summary: Python Client for Indexify
5
5
  Home-page: https://github.com/tensorlakeai/indexify
6
6
  License: Apache 2.0
@@ -299,7 +299,6 @@ class ExtractorAgent:
299
299
  image_version=image_version,
300
300
  labels=runtime_probe.labels,
301
301
  ).model_dump()
302
-
303
302
  logging.info("registering_executor", executor_id=self._executor_id)
304
303
  try:
305
304
  async with get_httpx_client(self._config_path, True) as client:
@@ -311,10 +310,11 @@ class ExtractorAgent:
311
310
  headers={"Content-Type": "application/json"},
312
311
  ) as event_source:
313
312
  if not event_source.response.is_success:
314
- resp = await event_source.response.aread().decode("utf-8")
313
+ resp = await event_source.response
314
+ resp_content = resp.aread()
315
315
  logging.error(
316
316
  f"failed to register",
317
- resp=str(resp),
317
+ resp=str(resp_content),
318
318
  status_code=event_source.response.status_code,
319
319
  )
320
320
  await asyncio.sleep(5)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "indexify"
3
- version = "0.2.33"
3
+ version = "0.2.34"
4
4
  description = "Python Client for Indexify"
5
5
  authors = ["Tensorlake Inc. <support@tensorlake.ai>"]
6
6
  license = "Apache 2.0"
File without changes
File without changes
File without changes
File without changes