missleading error message
As best as I can tell, the correct config would be: `retrievalMode=FANOUT` in fact, I want to use `retrievalMode=POLLING` but that probably belongs in some other docs.
This commit is contained in:
parent
c8f82836b1
commit
6452d019a1
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ public enum RetrievalMode {
|
||||||
private static RetrievalConfigBuilder decideForDefault(MultiLangDaemonConfiguration configuration) {
|
private static RetrievalConfigBuilder decideForDefault(MultiLangDaemonConfiguration configuration) {
|
||||||
if (configuration.getPollingConfig().anyPropertiesSet()) {
|
if (configuration.getPollingConfig().anyPropertiesSet()) {
|
||||||
log.warn("Some polling properties have been set, defaulting to polling. "
|
log.warn("Some polling properties have been set, defaulting to polling. "
|
||||||
+ "To switch to Fanout either add `RetrievalMode=FANOUT` to your "
|
+ "To switch to Fanout either add `retrievalMode=FANOUT` to your "
|
||||||
+ "properties or remove the any configuration for polling.");
|
+ "properties or remove the any configuration for polling.");
|
||||||
return configuration.getPollingConfig();
|
return configuration.getPollingConfig();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue