Remove unused RabbitMQ dynamic property flag

Fixes gh-1999
This commit is contained in:
Stephane Nicoll
2014-11-27 14:49:35 +01:00
parent 65e9d6a6e0
commit 1a5916665c
2 changed files with 6 additions and 10 deletions

View File

@@ -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;
}

View File

@@ -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",