We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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}}
The text was updated successfully, but these errors were encountered:
This issue can be safely closed, durable-queue intentionally munges the names of all the queues in it's codebase.
durable-queue
munge
Sorry, something went wrong.
No branches or pull requests
Hey @ztellman. Thanks for the awesome library!
I noticed that queue names with dashes are automatically converted to underscores. Intentional?
The text was updated successfully, but these errors were encountered: