indexify 0.2.34__tar.gz → 0.2.36__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.
- {indexify-0.2.34 → indexify-0.2.36}/PKG-INFO +1 -1
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/agent.py +2 -3
- {indexify-0.2.34 → indexify-0.2.36}/pyproject.toml +1 -1
- {indexify-0.2.34 → indexify-0.2.36}/LICENSE.txt +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/README.md +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/__init__.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/cli.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/common_util.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/data_loaders/__init__.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/data_loaders/local_directory_loader.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/data_loaders/url_loader.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/error.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/api_objects.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/downloader.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/executor_tasks.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/function_worker.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/image_dependency_installer.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/indexify_executor.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/runtime_probes.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/task_reporter.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/executor/task_store.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/data_objects.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/graph.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/graph_definition.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/graph_validation.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/image.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/indexify_functions.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/local_cache.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/object_serializer.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/functions_sdk/pipeline.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/http_client.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/remote_graph.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/remote_pipeline.py +0 -0
- {indexify-0.2.34 → indexify-0.2.36}/indexify/settings.py +0 -0
@@ -310,11 +310,10 @@ class ExtractorAgent:
|
|
310
310
|
headers={"Content-Type": "application/json"},
|
311
311
|
) as event_source:
|
312
312
|
if not event_source.response.is_success:
|
313
|
-
resp = await event_source.response
|
314
|
-
resp_content = resp.aread()
|
313
|
+
resp = await event_source.response.aread()
|
315
314
|
logging.error(
|
316
315
|
f"failed to register",
|
317
|
-
resp=str(
|
316
|
+
resp=str(resp),
|
318
317
|
status_code=event_source.response.status_code,
|
319
318
|
)
|
320
319
|
await asyncio.sleep(5)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|