Skip to content

Commit

Permalink
feat: change monitoring queue expiration to 1 hour #1638
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanzalu committed Jan 23, 2025
1 parent 146e528 commit 6d816bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public enum AmqpQueue {
WORKER_EVENT("exchangeWorkerEvents", BuiltinExchangeType.FANOUT, "routingKeyWorkerEvents"),
MONITORING("exchangeMonitoring", BuiltinExchangeType.DIRECT, "routingKeyMonitoring", Map.of(
"x-message-ttl", 5000,
"x-expires", 10000), null);
"x-expires", 3600 * 1000), null);

public final String exchange;
public final String routingKey;
Expand Down

0 comments on commit 6d816bc

Please sign in to comment.