MCPcopy
hub / github.com/celery/celery / BackendGetMetaError

Class BackendGetMetaError

celery/exceptions.py:286–293  ·  view source on GitHub ↗

An issue reading from the backend.

Source from the content-addressed store, hash-verified

284
285
286class BackendGetMetaError(BackendError):
287 """An issue reading from the backend."""
288
289 def __init__(self, *args, **kwargs):
290 self.task_id = kwargs.get('task_id', "")
291
292 def __repr__(self):
293 return super().__repr__() + " task_id:" + self.task_id
294
295
296class BackendStoreError(BackendError):

Callers 1

get_task_metaMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected