summaryrefslogtreecommitdiff
path: root/obnamlib/fmt_ga/chunk_store.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-08-01 12:40:08 +0300
committerLars Wirzenius <liw@liw.fi>2015-08-01 13:38:21 +0300
commit1eb41f8df54fe1ab4043f85e89153a1af9e0f186 (patch)
treeff72e7568b711df2bdc88e119ae61d2b572356a3 /obnamlib/fmt_ga/chunk_store.py
parent510f24a45478aa1cfeb8823f64dec0f466b89d03 (diff)
downloadobnam-1eb41f8df54fe1ab4043f85e89153a1af9e0f186.tar.gz
Add remove_unused_chunks method
Diffstat (limited to 'obnamlib/fmt_ga/chunk_store.py')
-rw-r--r--obnamlib/fmt_ga/chunk_store.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/obnamlib/fmt_ga/chunk_store.py b/obnamlib/fmt_ga/chunk_store.py
index 3740d912..f7e486d5 100644
--- a/obnamlib/fmt_ga/chunk_store.py
+++ b/obnamlib/fmt_ga/chunk_store.py
@@ -56,6 +56,10 @@ 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: