Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 15d0cbe

Browse files
move the debug to print only once
and update uv.lock with recent dependency change (cherry picked from commit aeb2a67)
1 parent e6cf2e0 commit 15d0cbe

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

packages/jumpstarter-driver-shell/jumpstarter_driver_shell/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ async def _run_inline_shell_script(
138138
cmd = self.shell + [script, method] + list(args)
139139

140140
# Start the process with pipes for streaming and new process group
141+
self.logger.debug( f"running {method} with cmd: {cmd} and env: {combined_env} " f"and args: {args}")
141142
process = await asyncio.create_subprocess_exec(
142143
*cmd,
143144
stdout=asyncio.subprocess.PIPE,
@@ -152,7 +153,6 @@ async def _run_inline_shell_script(
152153

153154
# Read output in real-time
154155
while process.returncode is None:
155-
self.logger.debug(f"running {method} with cmd: {cmd} and env: {combined_env} and args: {args}")
156156
if asyncio.get_event_loop().time() - start_time > self.timeout:
157157
# Send SIGTERM to entire process group for graceful termination
158158
try:

uv.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)