Skip to content

Commit 8d8d8ab

Browse files
authored
fix(transport): use Process.communicate instead of Process.wait (#2634)
1 parent 67a3064 commit 8d8d8ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright/_impl/_transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ async def run(self) -> None:
167167
break
168168
await asyncio.sleep(0)
169169

170-
await self._proc.wait()
170+
await self._proc.communicate()
171171
self._stopped_future.set_result(None)
172172

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

0 commit comments

Comments
 (0)