File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
serving/src/main/java/feast/serving/config
storage/connectors/redis/src/main/java/feast/storage/connectors/redis/retriever Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ public RedisStoreConfig getRedisConfig() {
330330 this .config .get ("host" ),
331331 Integer .valueOf (this .config .get ("port" )),
332332 Boolean .valueOf (this .config .getOrDefault ("ssl" , "false" )),
333- this .config .getOrDefault ("password" , "" ) );
333+ this .config .getOrDefault ("password" , "" ));
334334 }
335335
336336 public BigTableStoreConfig getBigtableConfig () {
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public static RedisClientAdapter create(RedisStoreConfig config) {
5656 if (!config .getPassword ().isEmpty ()) {
5757 uri .setPassword (config .getPassword ());
5858 }
59-
59+
6060 StatefulRedisConnection <byte [], byte []> connection =
6161 io .lettuce .core .RedisClient .create (uri ).connect (new ByteArrayCodec ());
6262
You can’t perform that action at this time.
0 commit comments