Skip to content

Commit b75f007

Browse files
committed
debug load balancer
1 parent 9b9b99b commit b75f007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.evergreen/scripts/setup-tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ def is_set(var: str) -> bool:
8888

8989
def run_command(cmd: str) -> None:
9090
try:
91-
proc = subprocess.run(shlex.split(cmd), check=True) # noqa: S603
91+
subprocess.run(shlex.split(cmd), check=True) # noqa: S603
9292
except subprocess.CalledProcessError as e:
93-
LOGGER.error(proc.stderr.decode("utf-8"))
93+
LOGGER.error(e.stderr.decode("utf-8"))
9494
raise e
9595

9696

0 commit comments

Comments
 (0)