summaryrefslogtreecommitdiff
path: root/obnamlib/fmt_ga/chunk_store.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-12-21 19:24:16 +0100
committerLars Wirzenius <liw@liw.fi>2015-12-21 22:38:37 +0100
commit67abb6ad1091722617c7517d3d9100bf60af7ac0 (patch)
treeda1adf499b1203955b4a8d100e707c7d52d7ce3b /obnamlib/fmt_ga/chunk_store.py
parent637fc8bc3843d9f1f77f75cc5c2e12e0ec594270 (diff)
downloadobnam-67abb6ad1091722617c7517d3d9100bf60af7ac0.tar.gz
Make remove_unused_chunks require chunk indexes lock
Also, move remove_unused_chunks to chunk indexes.
Diffstat (limited to 'obnamlib/fmt_ga/chunk_store.py')
-rw-r--r--obnamlib/fmt_ga/chunk_store.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/obnamlib/fmt_ga/chunk_store.py b/obnamlib/fmt_ga/chunk_store.py
index dcb920bb..9f916276 100644
--- a/obnamlib/fmt_ga/chunk_store.py
+++ b/obnamlib/fmt_ga/chunk_store.py
@@ -57,10 +57,6 @@ class GAChunkStore(object):
def flush_chunks(self):
self._blob_store.flush()
- def remove_unused_chunks(self):
- # FIXME: This is a no-op operation, for now.
- pass
-
def get_chunk_content(self, chunk_id):
content = self._blob_store.get_blob(chunk_id)
if content is None: