MCPcopy
hub / github.com/celery/celery / forget

Method forget

celery/result.py:667–670  ·  view source on GitHub ↗

Forget about (and possible remove the result of) all the tasks.

(self)

Source from the content-addressed store, hash-verified

665 return sum(int(result.successful()) for result in self.results)
666
667 def forget(self):
668 """Forget about (and possible remove the result of) all the tasks."""
669 for result in self.results:
670 result.forget()
671
672 def revoke(self, connection=None, terminate=False, signal=None,
673 wait=False, timeout=None):

Callers 1

forgetMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected