Skip to content

Instantly share code, notes, and snippets.

@georgeben
Created August 21, 2021 23:00
Show Gist options
  • Save georgeben/87cbd02f4b8285227d188884ee016084 to your computer and use it in GitHub Desktop.
Save georgeben/87cbd02f4b8285227d188884ee016084 to your computer and use it in GitHub Desktop.
const DELAY_EXCHANGE_NAME = "my_delay_exchange";
const options = {
autoDelete: false,
durable: true,
passive: true,
arguments: {
"x-delayed-type": "direct",
},
};
channel.assertExchange(DELAY_EXCHANGE_NAME, "x-delayed-message", options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment