diff options
author | Jürg Billeter <j@bitron.ch> | 2019-10-10 12:23:41 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2019-10-15 09:43:08 +0200 |
commit | 4be5a130a7c882d2c881d85259abe49e1a6e8e23 (patch) | |
tree | 3c3305ec30702bc9fc13ffff136157065e963e5c /src | |
parent | de5556880223f8f1d78ce7df568b2544bd1dc98f (diff) | |
download | buildstream-4be5a130a7c882d2c881d85259abe49e1a6e8e23.tar.gz |
_remote.py: Reset _initialized in close()
Diffstat (limited to 'src')
-rw-r--r-- | src/buildstream/_remote.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/buildstream/_remote.py b/src/buildstream/_remote.py index 0c0fed44d..1daf2f26f 100644 --- a/src/buildstream/_remote.py +++ b/src/buildstream/_remote.py @@ -192,6 +192,8 @@ class BaseRemote(): self.channel.close() self.channel = None + self._initialized = False + # _configure_protocols(): # # An abstract method to configure remote-specific protocols. This |