This commit is contained in:
2026-02-19 20:38:54 -08:00
parent 615a4fd1a4
commit 39a84b3274
5 changed files with 1475 additions and 69 deletions

View File

@@ -99,6 +99,7 @@ class PipelineRunner:
pipeline_text: str,
*,
seeds: Optional[Any] = None,
seed_table: Optional[Any] = None,
isolate: bool = False,
on_log: Optional[Callable[[str],
None]] = None,
@@ -158,6 +159,12 @@ class PipelineRunner:
except Exception:
debug(traceback.format_exc())
if seed_table is not None:
try:
ctx.set_current_stage_table(seed_table)
except Exception:
debug(traceback.format_exc())
stdout_buffer = io.StringIO()
stderr_buffer = io.StringIO()