Commit 6fb53f90 authored by Stephane Nicoll's avatar Stephane Nicoll

Polish contribution

Closes gh-6666
parent 47ec8630
...@@ -504,7 +504,7 @@ public class RabbitProperties { ...@@ -504,7 +504,7 @@ public class RabbitProperties {
private Boolean defaultRequeueRejected; private Boolean defaultRequeueRejected;
/** /**
* How often to publish idle container events. * How often idle container events should be published in milliseconds.
*/ */
private Long idleEventInterval; private Long idleEventInterval;
...@@ -571,7 +571,7 @@ public class RabbitProperties { ...@@ -571,7 +571,7 @@ public class RabbitProperties {
} }
public Long getIdleEventInterval() { public Long getIdleEventInterval() {
return idleEventInterval; return this.idleEventInterval;
} }
public void setIdleEventInterval(Long idleEventInterval) { public void setIdleEventInterval(Long idleEventInterval) {
......
...@@ -863,6 +863,7 @@ content into your application; rather pick only the properties that you need. ...@@ -863,6 +863,7 @@ content into your application; rather pick only the properties that you need.
spring.rabbitmq.listener.auto-startup=true # Start the container automatically on startup. spring.rabbitmq.listener.auto-startup=true # Start the container automatically on startup.
spring.rabbitmq.listener.concurrency= # Minimum number of consumers. spring.rabbitmq.listener.concurrency= # Minimum number of consumers.
spring.rabbitmq.listener.default-requeue-rejected= # Whether or not to requeue delivery failures; default `true`. spring.rabbitmq.listener.default-requeue-rejected= # Whether or not to requeue delivery failures; default `true`.
spring.rabbitmq.idle-event-interval= # How often idle container events should be published in milliseconds.
spring.rabbitmq.listener.max-concurrency= # Maximum number of consumers. spring.rabbitmq.listener.max-concurrency= # Maximum number of consumers.
spring.rabbitmq.listener.prefetch= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used). spring.rabbitmq.listener.prefetch= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).
spring.rabbitmq.listener.retry.enabled=false # Whether or not publishing retries are enabled. spring.rabbitmq.listener.retry.enabled=false # Whether or not publishing retries are enabled.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment