summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos Evripiotis <jevripiotis@bloomberg.net>2019-03-13 16:19:13 +0000
committerbst-marge-bot <marge-bot@buildstream.build>2019-03-21 15:58:17 +0000
commit971f0bda8491f1fe02857178b4aa82c560f6f27b (patch)
tree08d5b62641f2a4173318774f48760de849522eed
parentfcc35a8ce9f2c5cdadb7e5f486b8f14ab5a515c3 (diff)
downloadbuildstream-971f0bda8491f1fe02857178b4aa82c560f6f27b.tar.gz
cascache: remove redundant assignment
-rw-r--r--buildstream/_cas/cascache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_cas/cascache.py b/buildstream/_cas/cascache.py
index 086510bf7..6418d72fd 100644
--- a/buildstream/_cas/cascache.py
+++ b/buildstream/_cas/cascache.py
@@ -1093,7 +1093,7 @@ class CASQuota:
if stored_size is not None:
self._cache_size = stored_size
else:
- self._cache_size = self.compute_cache_size()
+ self.compute_cache_size()
return self._cache_size