Skip to content

Commit 53bf511

Browse files
committed
trio.open_process() isn't released yet
1 parent d11fe44 commit 53bf511

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pysipp/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def scenario(dirpath=None, proxyaddr=None, autolocalsocks=True,
101101
# same as above
102102
scen = plugin.mng.hook.pysipp_conf_scen_protocol(
103103
agents=[uas, uac], confpy=None,
104+
scenkwargs=scenkwargs,
104105
)
105106

106107
if proxyaddr is not None:

pysipp/launch.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ async def run(
5656
for cmd in cmds:
5757
log.debug(
5858
"launching cmd:\n\"{}\"\n".format(cmd))
59-
proc = await trio.open_process(
59+
# proc = await trio.open_process(
60+
proc = trio.Process(
6061
shlex.split(cmd),
6162
stdout=subprocess.DEVNULL,
6263
stderr=subprocess.PIPE

0 commit comments

Comments
 (0)