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 15:03:39 +0200
commit4ba2bca48c1b235ed38263e218bdfc4d9fc316ad (patch)
tree0df5bd29a5d5483bf1d754194068f041a5050502
parent9be0959b8121429efc80fce7ad37631052f176de (diff)
downloadbuildstream-juerg/casd.tar.gz
_remote.py: Remove unused bytestreamjuerg/casd
-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