MCPcopy
hub / github.com/celery/celery / delete

Method delete

celery/backends/gcs.py:101–105  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

99 blob.upload_from_string(value, retry=self._retry_policy)
100
101 def delete(self, key):
102 key = bytes_to_str(key)
103 blob = self._get_blob(key)
104 if blob.exists():
105 blob.delete(retry=self._retry_policy)
106
107 def mget(self, keys):
108 with ThreadPoolExecutor() as pool:

Callers 2

on_chord_part_returnMethod · 0.45
_delete_chord_keyMethod · 0.45

Calls 1

_get_blobMethod · 0.95

Tested by

no test coverage detected