dagster-async-executor 0.0.2__tar.gz → 0.0.3__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.
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/PKG-INFO +1 -1
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/__init__.py +1 -1
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/execution/plan/execute_plan.py +3 -1
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/execution/plan/execute_step.py +3 -1
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor.egg-info/PKG-INFO +1 -1
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/pyproject.toml +3 -3
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/README.md +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/execution/__init__.py +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/execution/plan/__init__.py +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/execution/plan/compute.py +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/execution/plan/compute_generator.py +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/executor.py +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/executor_definition.py +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor.egg-info/SOURCES.txt +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor.egg-info/dependency_links.txt +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor.egg-info/requires.txt +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor.egg-info/top_level.txt +0 -0
- {dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/setup.cfg +0 -0
{dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/__init__.py
RENAMED
|
@@ -2,7 +2,7 @@ from dagster._core.libraries import DagsterLibraryRegistry
|
|
|
2
2
|
|
|
3
3
|
from dagster_async_executor.executor_definition import async_executor as async_executor
|
|
4
4
|
|
|
5
|
-
__version__ = "0.0.
|
|
5
|
+
__version__ = "0.0.3"
|
|
6
6
|
|
|
7
7
|
DagsterLibraryRegistry.register(
|
|
8
8
|
"dagster-async-executor", __version__, is_dagster_package=False
|
|
@@ -214,7 +214,9 @@ async def _trigger_hook(
|
|
|
214
214
|
try:
|
|
215
215
|
with user_code_error_boundary(
|
|
216
216
|
HookExecutionError,
|
|
217
|
-
lambda:
|
|
217
|
+
lambda: (
|
|
218
|
+
f"Error occurred during the execution of hook_fn triggered for {op_label}"
|
|
219
|
+
),
|
|
218
220
|
log_manager=hook_context.log,
|
|
219
221
|
):
|
|
220
222
|
if inspect.iscoroutinefunction(hook_def.hook_fn):
|
|
@@ -780,7 +780,9 @@ async def _store_output(
|
|
|
780
780
|
for elt in iterate_with_context(
|
|
781
781
|
lambda: op_execution_error_boundary(
|
|
782
782
|
DagsterExecutionHandleOutputError,
|
|
783
|
-
msg_fn=lambda:
|
|
783
|
+
msg_fn=lambda: (
|
|
784
|
+
f'Error occurred while handling output "{output_context.name}" of step "{step_context.step.key}":'
|
|
785
|
+
),
|
|
784
786
|
step_context=step_context,
|
|
785
787
|
step_key=step_context.step.key,
|
|
786
788
|
output_name=output_context.name,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dagster_async_executor-0.0.2 → dagster_async_executor-0.0.3}/dagster_async_executor/executor.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|