Loading lib/galaxy/job_execution/container_monitor.py +2 −1 Original line number Diff line number Diff line Loading @@ -30,7 +30,8 @@ def parse_ports(container_name, connection_configuration): stdout_file.seek(0) ports_raw = stdout_file.read().decode("utf-8") return ports_raw else: raise Exception("Could not find port.") def get_ip_command(cmd) -> str: return subprocess.check_output(shlex.split(cmd), text=True).strip() Loading Loading
lib/galaxy/job_execution/container_monitor.py +2 −1 Original line number Diff line number Diff line Loading @@ -30,7 +30,8 @@ def parse_ports(container_name, connection_configuration): stdout_file.seek(0) ports_raw = stdout_file.read().decode("utf-8") return ports_raw else: raise Exception("Could not find port.") def get_ip_command(cmd) -> str: return subprocess.check_output(shlex.split(cmd), text=True).strip() Loading