File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ os = require('os')
3
3
4
4
require (' console' ).listen (os.getenv (" ADMIN_PORT" ))
5
5
box .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" ,
9
9
}
Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ class RunnerException(object):
39
39
40
40
class TarantoolServer (object ):
41
41
default_tarantool = {
42
- "bin" : "tarantool" ,
43
- "logfile" : "tarantool.log" ,
44
- "init" : "init.lua" }
42
+ "bin" : "tarantool" ,
43
+ "logfile" : "tarantool.log" ,
44
+ "init" : "init.lua" }
45
45
46
46
default_cfg = {
47
47
"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\" " }
50
50
51
51
@property
52
52
def logfile_path (self ):
You can’t perform that action at this time.
0 commit comments