Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/coleifer/huey
/ flush_queue
Method
flush_queue
huey/storage.py:527–528 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
525
return
self.conn.lrange(self.queue_key, 0, -1)[::-1]
526
527
def
flush_queue(self):
528
self.conn.delete(self.queue_key)
529
530
def
add_to_schedule(self, data, ts):
531
self.conn.zadd(self.schedule_key, {data: self.convert_ts(ts)})
Callers
nothing calls this directly
Calls
1
delete
Method · 0.80
Tested by
no test coverage detected