We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 911d439 commit f88ef7eCopy full SHA for f88ef7e
src/main/java/com/github/jcustenborder/kafka/connect/redis/RedisConnectorConfig.java
@@ -218,6 +218,7 @@ public List<RedisURI> redisURIs() {
218
RedisURI.Builder builder = RedisURI.builder();
219
builder.withHost(host.getHost());
220
builder.withPort(host.getPort());
221
+ builder.withDatabase(this.database);
222
if (!Strings.isNullOrEmpty(this.password)) {
223
builder.withPassword(this.password);
224
}
0 commit comments