From c9dba4d0a4d3074e3de1ce77c05065e411b6f0b8 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 16 Mar 2023 09:09:25 -0400 Subject: [PATCH] Fix a couple other `_protocol` attributes --- integration/grid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/grid.py b/integration/grid.py index cec30b79b..9b347cf6f 100644 --- a/integration/grid.py +++ b/integration/grid.py @@ -231,7 +231,7 @@ class Client(object): reactor, self.process.node_dir, request, None, ) self.process = process - self.protocol = self.process.transport._protocol + self.protocol = self.process.transport.proto yield await_client_ready(self.process, minimum_number_of_servers=servers) @@ -253,7 +253,7 @@ def create_client(reactor, request, temp_dir, introducer, flog_gatherer, name, w returnValue( Client( process=node_process, - protocol=node_process.transport._protocol, + protocol=node_process.transport.proto, ) )