We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fbbfb5 commit 8ca9159Copy full SHA for 8ca9159
src/aleph/sdk/client/http.py
@@ -564,7 +564,7 @@ async def get_stored_content(
564
message, status = await self.get_message(
565
item_hash=ItemHash(item_hash), with_status=True
566
)
567
- if status != MessageStatus.PROCESSED:
+ if status not in [MessageStatus.PROCESSED, MessageStatus.REMOVING]:
568
resp = f"Invalid message status: {status}"
569
elif message.type != MessageType.store:
570
resp = f"Invalid message type: {message.type}"
0 commit comments