follow-up prev

This commit is contained in:
SomberNight 2020-09-25 11:23:23 +02:00
parent 5a7c3dc4d0
commit aae06116f9
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -132,7 +132,7 @@ class NotificationSession(RPCSession):
self.cache = {}
self.default_timeout = NetworkTimeout.Generic.NORMAL
self._msg_counter = itertools.count(start=1)
self.interface = interface # type: Interface
self.interface = interface
self.cost_hard_limit = 0 # disable aiorpcx resource limits
async def handle_request(self, request):
@ -612,7 +612,6 @@ class Interface(Logger):
host=self.host, port=self.port,
ssl=sslc, proxy=self.proxy) as session:
self.session = session # type: NotificationSession
self.session.interface = self
self.session.set_default_timeout(self.network.get_network_timeout_seconds(NetworkTimeout.Generic))
try:
ver = await session.send_request('server.version', [self.client_name(), version.PROTOCOL_VERSION])