Set RUST_MIN_STACK in JSON-RPC tests

This commit is contained in:
link2xt
2022-11-01 23:05:38 +00:00
parent 38efde6c98
commit 772514940c

View File

@@ -30,7 +30,8 @@ export async function startServer(port: number = RPC_SERVER_PORT): Promise<RpcSe
cwd: tmpDir,
env: {
RUST_LOG: process.env.RUST_LOG || "info",
DC_PORT: '' + port
DC_PORT: '' + port,
RUST_MIN_STACK: "8388608"
},
});
let shouldClose = false;