durable-queue
durable-queue copied to clipboard
Dashes converted to underscores
Hey @ztellman. Thanks for the awesome library!
I noticed that queue names with dashes are automatically converted to underscores. Intentional?
(def dir "/tmp")
(def conn (d/queues dir {}))
(d/put! conn "a-b-c" 42)
(d/stats conn)
;; => {"a_b_c" {:in-progress 0, :completed 0, :retried 0, :enqueued 1, :num-slabs 1, :num-active-slabs 1}}
This issue can be safely closed, durable-queue intentionally munges the names of all the queues in it's codebase.