Commit 1a591666 authored by Stephane Nicoll's avatar Stephane Nicoll

Remove unused RabbitMQ dynamic property flag

Fixes gh-1999
parent 65e9d6a6
......@@ -61,8 +61,6 @@ public class RabbitProperties {
*/
private String addresses;
private boolean dynamic = true;
public String getHost() {
if (this.addresses == null) {
return this.host;
......@@ -149,14 +147,6 @@ public class RabbitProperties {
this.password = password;
}
public boolean isDynamic() {
return this.dynamic;
}
public void setDynamic(boolean dynamic) {
this.dynamic = dynamic;
}
public String getVirtualHost() {
return this.virtualHost;
}
......
......@@ -89,6 +89,12 @@
"description": "Enable SitePreferenceHandler.",
"defaultValue": true
},
{
"name": "spring.rabbitmq.dynamic",
"type": "java.lang.Boolean",
"description": "Create an AmqpAdmin bean.",
"defaultValue": true
},
{
"name": "spring.social.auto-connection-views",
"type": "java.lang.Boolean",
......
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