Skip to content

Commit

Permalink
Merge pull request #144 from Netflix/dev
Browse files Browse the repository at this point in the history
Merge dev to master
  • Loading branch information
smukil authored Mar 16, 2021
2 parents 09b7fd1 + c39a439 commit 0391b05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ public void updateConfiguration() throws IOException {
}

if (line.matches(REDIS_CONF_ZSET_MAXZIPLISTVALUE) && config.getRedisMaxZsetZiplistValue() != -1) {
String zsetMaxZiplistValue = REDIS_CONF_ZSET_MAXZIPLISTVALUE + " " + config.getRedisMaxZsetZiplistValue();
String zsetMaxZiplistValue = "zset-max-ziplist-value " + config.getRedisMaxZsetZiplistValue();
logger.info("Updating Redis property: " + zsetMaxZiplistValue);
lines.set(i, zsetMaxZiplistValue);
}
Expand Down

0 comments on commit 0391b05

Please sign in to comment.