File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ os = require('os')
33
44require (' console' ).listen (os.getenv (" ADMIN_PORT" ))
55box .cfg {
6- listen = os.getenv (" PRIMARY_PORT" ),
7- slab_alloc_arena = 0.1 ,
8- pid_file = " box.pid" ,
6+ listen = os.getenv (" PRIMARY_PORT" ),
7+ memtx_memory = 0.1 * 1024 ^ 3 , -- 0.1 GiB
8+ pid_file = " box.pid" ,
99}
Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ class RunnerException(object):
3939
4040class TarantoolServer (object ):
4141 default_tarantool = {
42- "bin" : "tarantool" ,
43- "logfile" : "tarantool.log" ,
44- "init" : "init.lua" }
42+ "bin" : "tarantool" ,
43+ "logfile" : "tarantool.log" ,
44+ "init" : "init.lua" }
4545
4646 default_cfg = {
4747 "custom_proc_title" : "\" tarantool-python testing\" " ,
48- "slab_alloc_arena " : 0.5 ,
49- "pid_file" : "\" box.pid\" " }
48+ "memtx_memory " : 0.5 * 1024 ** 3 , # 0.5 GiB
49+ "pid_file" : "\" box.pid\" " }
5050
5151 @property
5252 def logfile_path (self ):
You can’t perform that action at this time.
0 commit comments