pc_rpc: use ProactorEventLoop on Windows (#627)

This commit is contained in:
Sebastien Bourdeauducq 2016-11-24 10:18:27 +08:00
parent dab19d23cc
commit 7d4297b9bb
1 changed files with 6 additions and 1 deletions

View File

@ -11,6 +11,7 @@ client passes a list as a parameter of an RPC method, and that method
client's list.
"""
import os
import socket
import asyncio
import threading
@ -592,7 +593,11 @@ def simple_server_loop(targets, host, port, description=None):
See ``Server`` for a description of the parameters.
"""
loop = asyncio.get_event_loop()
if os.name == "nt":
loop = asyncio.ProactorEventLoop()
asyncio.set_event_loop(loop)
else:
loop = asyncio.get_event_loop()
try:
server = Server(targets, description, True)
loop.run_until_complete(server.start(host, port))