parent
5cb07e292d
commit
5feaf2bc1a
|
@ -290,7 +290,7 @@ public class RabbitProperties {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setVirtualHost(String virtualHost) {
|
public void setVirtualHost(String virtualHost) {
|
||||||
this.virtualHost = StringUtils.hasLength(virtualHost) ? virtualHost : "/";
|
this.virtualHost = StringUtils.hasText(virtualHost) ? virtualHost : "/";
|
||||||
}
|
}
|
||||||
|
|
||||||
public AddressShuffleMode getAddressShuffleMode() {
|
public AddressShuffleMode getAddressShuffleMode() {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2019 the original author or authors.
|
* Copyright 2012-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
Loading…
Reference in New Issue