Skip to content

Commit 3777c95

Browse files
committed
chore(pyproject): bump version to 0.32.4
fix(pipeline): log executor and adapters when starting pipeline execution
1 parent 92edd3b commit 3777c95

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A simple workflow framework for building and managing data proces
44
authors = [{ name = "Volker L.", email = "[email protected]" }]
55
readme = "README.md"
66
requires-python = ">= 3.11"
7-
version = "0.32.3"
7+
version = "0.32.4"
88
keywords = ["hamilton", "workflow", "pipeline", "scheduler", "dask", "ray"]
99

1010
dependencies = [

src/flowerpower/pipeline/pipeline.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,9 @@ def _execute_pipeline(
306306
executor, shutdown_func, adapters = self._setup_execution_context(
307307
run_config=run_config
308308
)
309+
logger.debug(
310+
"Starting pipeline execution with executor {executor} and adapters {adapters}"
311+
)
309312
synchronous_executor = True
310313
if run_config.executor.type not in ("synchronous", None):
311314
synchronous_executor = False

0 commit comments

Comments
 (0)