forked from M-Labs/artiq
1
0
Fork 0

protocols.pc_rpc: exclude kernel_invariants from proxying.

Fixes #531.
This commit is contained in:
whitequark 2016-08-03 04:58:51 +00:00 committed by Sebastien Bourdeauducq
parent ecc30979df
commit bdb85c8eab
1 changed files with 6 additions and 0 deletions

View File

@ -100,6 +100,8 @@ class Client:
in the middle of a RPC can break subsequent RPCs (from the same in the middle of a RPC can break subsequent RPCs (from the same
client). client).
""" """
kernel_invariants = set()
def __init__(self, host, port, target_name=AutoTarget, timeout=None): def __init__(self, host, port, target_name=AutoTarget, timeout=None):
self.__socket = socket.create_connection((host, port), timeout) self.__socket = socket.create_connection((host, port), timeout)
@ -187,6 +189,8 @@ class AsyncioClient:
Concurrent access from different asyncio tasks is supported; all calls Concurrent access from different asyncio tasks is supported; all calls
use a single lock. use a single lock.
""" """
kernel_invariants = set()
def __init__(self): def __init__(self):
self.__lock = asyncio.Lock() self.__lock = asyncio.Lock()
self.__reader = None self.__reader = None
@ -286,6 +290,8 @@ class BestEffortClient:
:param retry: Amount of time to wait between retries when reconnecting :param retry: Amount of time to wait between retries when reconnecting
in the background. in the background.
""" """
kernel_invariants = set()
def __init__(self, host, port, target_name, def __init__(self, host, port, target_name,
firstcon_timeout=0.5, retry=5.0): firstcon_timeout=0.5, retry=5.0):
self.__host = host self.__host = host