redis-memory-server
Advanced tools
Comparing version 0.9.0 to 0.10.0
@@ -269,3 +269,7 @@ "use strict"; | ||
log(`makeInstall(): ${extractDir}`); | ||
yield (0, util_1.promisify)(child_process_1.exec)('make', { | ||
const makeArgs = [ | ||
// https://github.com/redis/redis/issues/12759 | ||
'JEMALLOC_CONFIGURE_OPTS=--with-lg-vaddr=48', | ||
]; | ||
yield (0, util_1.promisify)(child_process_1.exec)(`make${makeArgs.map((arg) => ` ${arg}`).join('')}`, { | ||
cwd: extractDir, | ||
@@ -272,0 +276,0 @@ }); |
{ | ||
"name": "redis-memory-server", | ||
"version": "0.9.0", | ||
"version": "0.10.0", | ||
"description": "Redis Server for testing. The server will allow you to connect your favorite client library to the Redis Server and run parallel integration tests isolated from each other.", | ||
@@ -5,0 +5,0 @@ "bin": "bin/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
115008
1664