Skip to content

Commit

Permalink
removed keyPrefix
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Oct 28, 2024
1 parent ff7541d commit 4fee0e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ving/redis.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const spawnRedis = () => {
port: parseInt(redisConfig.port || 6379),
host: redisConfig.hostname,
};
const redisOptions = { maxRetriesPerRequest: null, keyPrefix: process.env.NODE_ENV };
const redisOptions = { maxRetriesPerRequest: null };
if (redisConfig.password) {
redisOptions.password = redisConfig.password;
}
Expand Down

0 comments on commit 4fee0e8

Please sign in to comment.