Skip to content

Commit b4976aa

Browse files
move the debug to print only once
and update uv.lock with recent dependency change
1 parent c03ec30 commit b4976aa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

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)