diff options
-rw-r--r-- | src/buildstream/_remote.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/buildstream/_remote.py b/src/buildstream/_remote.py index 75c626c47..0c0fed44d 100644 --- a/src/buildstream/_remote.py +++ b/src/buildstream/_remote.py @@ -26,7 +26,6 @@ import grpc from . import _signals from . import utils from ._exceptions import LoadError, LoadErrorReason, ImplError, RemoteError -from ._protos.google.bytestream import bytestream_pb2_grpc from .types import FastEnum @@ -134,7 +133,6 @@ class BaseRemote(): self.spec = spec self._initialized = False - self.bytestream = None self.channel = None self.server_cert = None @@ -178,9 +176,6 @@ class BaseRemote(): else: raise RemoteError("Unsupported URL: {}".format(self.spec.url)) - # Set up the bytestream on our channel - self.bytestream = bytestream_pb2_grpc.ByteStreamStub(self.channel) - self._configure_protocols() self._initialized = True |