Fix other configuration getters to use correct names

This commit is contained in:
Grant Holliday 2020-06-18 17:28:29 +10:00
Родитель b4fc2173ca
Коммит 1c2d3e22de
1 изменённых файлов: 5 добавлений и 6 удалений

Просмотреть файл

@ -324,27 +324,26 @@ public class KustoSinkConfig extends AbstractConfig {
}
public String getErrorTolerance() {
return this.getString(KUSTO_SINK_TEMP_DIR_CONF);
return this.getString(KUSTO_SINK_ERROR_TOLERANCE_CONF);
}
public String getDlqBootstrapServers() {
return this.getString(KUSTO_SINK_TEMP_DIR_CONF);
return this.getString(KUSTO_DLQ_BOOTSTRAP_SERVERS_CONF);
}
public String getDlqTopicName() {
return this.getString(KUSTO_SINK_TEMP_DIR_CONF);
return this.getString(KUSTO_DLQ_TOPIC_NAME_CONF);
}
public long getMaxRetryTime() {
return this.getLong(KUSTO_SINK_FLUSH_SIZE_BYTES_CONF);
return this.getLong(KUSTO_SINK_MAX_RETRY_TIME_MS_CONF);
}
public long getBackOffTime() {
return this.getLong(KUSTO_SINK_FLUSH_SIZE_BYTES_CONF);
return this.getLong(KUSTO_SINK_RETRY_BACKOFF_TIME_MS_CONF);
}
public static void main(String[] args) {
System.out.println(getConfig().toEnrichedRst());
}
}