summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-09-12 10:06:30 +0200
committerJürg Billeter <j@bitron.ch>2019-09-19 17:31:29 +0200
commit78880af45077f1132a7bc949cff433a965002520 (patch)
tree41045265abe0080fee9987859dd5b078fc4afb0a
parentfadbf6713bfc24463025000f5e68e3150660dd81 (diff)
downloadbuildstream-78880af45077f1132a7bc949cff433a965002520.tar.gz
_remote.py: Remove unused bytestream
-rw-r--r--src/buildstream/_remote.py5
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