MCPcopy
hub / github.com/celery/celery / BackendStoreError

Class BackendStoreError

celery/exceptions.py:296–304  ·  view source on GitHub ↗

An issue writing to the backend.

Source from the content-addressed store, hash-verified

294
295
296class BackendStoreError(BackendError):
297 """An issue writing to the backend."""
298
299 def __init__(self, *args, **kwargs):
300 self.state = kwargs.get('state', "")
301 self.task_id = kwargs.get('task_id', "")
302
303 def __repr__(self):
304 return super().__repr__() + " state:" + self.state + " task_id:" + self.task_id
305
306
307class CeleryCommandException(ClickException):

Callers 3

setMethod · 0.90
store_resultMethod · 0.90
_store_resultMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected