-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DEVEX-2399]: Make errored queues configurable (#213)
* docs: add typespecs to helper module * feat: add `queue_opts` in setup_dead_lettering/2 * feat!: propagate queue type to dead letter queue BREAKING CHANGE: if `Helper.declare` is used with a non-default queue type this will try to change the dead letter queue type causing an error * test: x-queue-type is correctly set on dead letter queue * fix!: avoid nested lists in `original_routing_keys` * chore: bump to 7.0.0
- Loading branch information
1 parent
f4f675a
commit 0d2672c
Showing
5 changed files
with
171 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ rest! | |
```elixir | ||
def deps do | ||
[ | ||
{:amqpx, "~> 6.1.3"} | ||
{:amqpx, "~> 7.0.0"} | ||
] | ||
end | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
defmodule Amqpx.MixProject do | ||
use Mix.Project | ||
|
||
@version "6.1.3" | ||
@version "7.0.0" | ||
|
||
def project do | ||
[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters