Remove unused RabbitMQ dynamic property flag
Fixes gh-1999
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user