Skip to content
Snippets Groups Projects
Commit b245f13a authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

gh-749: wal_dir_rescan_delay is dynamic

parent a03229ff
No related branches found
No related tags found
No related merge requests found
......@@ -129,6 +129,8 @@ local dynamic_cfg = {
-- snapshot_daemon
snapshot_period = box.internal.snapshot_daemon.set_snapshot_period,
snapshot_count = box.internal.snapshot_daemon.set_snapshot_count,
-- do nothing, affects new replicas, which query this value on start
wal_dir_rescan_delay = function() end
}
local dynamic_cfg_skip_at_load = {
......
......@@ -2,7 +2,7 @@
--# push filter 'admin: .*' to 'admin: <uri>'
box.cfg.nosuchoption = 1
---
- error: '[string "-- load_cfg.lua - internal file..."]:258: Attempt to modify a read-only
- error: '[string "-- load_cfg.lua - internal file..."]:260: Attempt to modify a read-only
table'
...
t = {} for k,v in pairs(box.cfg) do if type(v) ~= 'table' and type(v) ~= 'function' then table.insert(t, k..': '..tostring(v)) end end
......@@ -36,7 +36,7 @@ t
-- must be read-only
box.cfg()
---
- error: '[string "-- load_cfg.lua - internal file..."]:204: bad argument #1 to ''pairs''
- error: '[string "-- load_cfg.lua - internal file..."]:206: bad argument #1 to ''pairs''
(table expected, got nil)'
...
t = {} for k,v in pairs(box.cfg) do if type(v) ~= 'table' and type(v) ~= 'function' then table.insert(t, k..': '..tostring(v)) end end
......@@ -70,23 +70,23 @@ t
-- check that cfg with unexpected parameter fails.
box.cfg{sherlock = 'holmes'}
---
- error: '[string "-- load_cfg.lua - internal file..."]:160: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:162: Error: cfg parameter
''sherlock'' is unexpected'
...
-- check that cfg with unexpected type of parameter failes
box.cfg{listen = {}}
---
- error: '[string "-- load_cfg.lua - internal file..."]:180: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:182: Error: cfg parameter
''listen'' should be one of types: string, number'
...
box.cfg{wal_dir = 0}
---
- error: '[string "-- load_cfg.lua - internal file..."]:174: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:176: Error: cfg parameter
''wal_dir'' should be of type string'
...
box.cfg{coredump = 'true'}
---
- error: '[string "-- load_cfg.lua - internal file..."]:174: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:176: Error: cfg parameter
''coredump'' should be of type boolean'
...
--------------------------------------------------------------------------------
......@@ -94,17 +94,17 @@ box.cfg{coredump = 'true'}
--------------------------------------------------------------------------------
box.cfg{slab_alloc_arena = "100500"}
---
- error: '[string "-- load_cfg.lua - internal file..."]:174: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:176: Error: cfg parameter
''slab_alloc_arena'' should be of type number'
...
box.cfg{sophia = "sophia"}
---
- error: '[string "-- load_cfg.lua - internal file..."]:168: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:170: Error: cfg parameter
''sophia'' should be a table'
...
box.cfg{sophia = {threads = "threads"}}
---
- error: '[string "-- load_cfg.lua - internal file..."]:174: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:176: Error: cfg parameter
''sophia.threads'' should be of type number'
...
--------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment