indexify 0.3.14__py3-none-any.whl → 0.3.15__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.
- indexify/executor/executor.py +2 -2
- {indexify-0.3.14.dist-info → indexify-0.3.15.dist-info}/METADATA +1 -1
- {indexify-0.3.14.dist-info → indexify-0.3.15.dist-info}/RECORD +5 -5
- {indexify-0.3.14.dist-info → indexify-0.3.15.dist-info}/WHEEL +0 -0
- {indexify-0.3.14.dist-info → indexify-0.3.15.dist-info}/entry_points.txt +0 -0
indexify/executor/executor.py
CHANGED
@@ -228,7 +228,8 @@ class Executor:
|
|
228
228
|
try:
|
229
229
|
async for task in self._task_fetcher.run():
|
230
230
|
metric_tasks_fetched.inc()
|
231
|
-
|
231
|
+
if not self._is_shutdown:
|
232
|
+
asyncio.create_task(self._run_task(task))
|
232
233
|
except Exception as e:
|
233
234
|
self._logger.error(
|
234
235
|
"failed fetching tasks, retrying in 5 seconds", exc_info=e
|
@@ -351,7 +352,6 @@ class Executor:
|
|
351
352
|
|
352
353
|
if self._task_runner is not None:
|
353
354
|
await self._task_runner.shutdown()
|
354
|
-
self._task_runner = None
|
355
355
|
if self._state_reporter is not None:
|
356
356
|
await self._state_reporter.shutdown()
|
357
357
|
self._state_reporter = None
|
@@ -2,7 +2,7 @@ indexify/cli/cli.py,sha256=Y0PwJKhc3MWOV4Sw9c01WjS0M43QSMcOP6IVMKUnjME,11027
|
|
2
2
|
indexify/executor/README.md,sha256=ozC6_hMkhQQNVCMEpBxwiUALz6lwErPQxNxQfQDqnG4,2029
|
3
3
|
indexify/executor/api_objects.py,sha256=TaYwDoo7EjuLBusxH512-KdvAJRtBwbEP2IObWraabU,1100
|
4
4
|
indexify/executor/downloader.py,sha256=LkvAXfKxddnDzgfmwHcpDB_n795-eVKzn-hLjq4nUEM,9412
|
5
|
-
indexify/executor/executor.py,sha256=
|
5
|
+
indexify/executor/executor.py,sha256=pndLcM9Si_-HzctUi6XrIs9RLd0lj9JiHiaeUZ81ncI,15213
|
6
6
|
indexify/executor/function_executor/function_executor.py,sha256=sQ5FOdrjybDDsjagghlfjV06IXTpWWDBSTHqQXI-w9M,11245
|
7
7
|
indexify/executor/function_executor/function_executor_state.py,sha256=_mqWPHI442ak2hwo21BbDclXIUhjg_M7tfg7lyOoxg8,3666
|
8
8
|
indexify/executor/function_executor/function_executor_states_container.py,sha256=Z4tMQfOoGqaWotQXTIBvsujXkXAAw2UGsIxUnlUm8Wo,3067
|
@@ -46,7 +46,7 @@ indexify/task_scheduler/proto/task_scheduler.proto,sha256=6zpGLqhITlbXtwYQwqZms7
|
|
46
46
|
indexify/task_scheduler/proto/task_scheduler_pb2.py,sha256=NeDSktCe7cs6E-_W_cL25qbIgp9uBJccv0bgts2Oufo,8767
|
47
47
|
indexify/task_scheduler/proto/task_scheduler_pb2.pyi,sha256=MX4oyoqNQfhikOBSE7bnMLvFbvmdUqL3aBlEsC5Uo24,10620
|
48
48
|
indexify/task_scheduler/proto/task_scheduler_pb2_grpc.py,sha256=a-KpbGWSGZIZ9F35OgwEjp25C4jySf5PW8BOf8UFR2A,7144
|
49
|
-
indexify-0.3.
|
50
|
-
indexify-0.3.
|
51
|
-
indexify-0.3.
|
52
|
-
indexify-0.3.
|
49
|
+
indexify-0.3.15.dist-info/METADATA,sha256=MWkPCWVMkZ3M1_ZHXnCk0NAUh9PCgYlnEaNNCh1c7XY,1158
|
50
|
+
indexify-0.3.15.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
51
|
+
indexify-0.3.15.dist-info/entry_points.txt,sha256=GU9wmsgvN7nQw3N2X0PMYn1RSvF6CrhH9RuC2D8d3Gk,53
|
52
|
+
indexify-0.3.15.dist-info/RECORD,,
|
File without changes
|
File without changes
|