From 646297ddc3f95b9ab88b35d32a83782c8e2f178f Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 29 Nov 2020 15:08:46 -0500 Subject: [PATCH] Add stub for LocalCiphertextReader.set_upload_status --- src/allmydata/immutable/offloaded.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/allmydata/immutable/offloaded.py b/src/allmydata/immutable/offloaded.py index 4e18ad216..53a1f911a 100644 --- a/src/allmydata/immutable/offloaded.py +++ b/src/allmydata/immutable/offloaded.py @@ -499,6 +499,8 @@ class LocalCiphertextReader(AskUntilSuccessMixin): # ??. I'm not sure if it makes sense to forward the close message. return self.call("close") + def set_upload_status(self, upload_status): + raise NotImplementedError @implementer(interfaces.RIHelper, interfaces.IStatsProducer)