Skip to content

Commit

Permalink
fix(transport): use Process.communicate instead of Process.wait (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
oxy-star authored Nov 11, 2024
1 parent 67a3064 commit 8d8d8ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright/_impl/_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ async def run(self) -> None:
break
await asyncio.sleep(0)

await self._proc.wait()
await self._proc.communicate()
self._stopped_future.set_result(None)

def send(self, message: Dict) -> None:
Expand Down

0 comments on commit 8d8d8ab

Please sign in to comment.