Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
b245f13a
Commit
b245f13a
authored
10 years ago
by
Konstantin Osipov
Browse files
Options
Downloads
Patches
Plain Diff
gh-749: wal_dir_rescan_delay is dynamic
parent
a03229ff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/box/lua/load_cfg.lua
+2
-0
2 additions, 0 deletions
src/box/lua/load_cfg.lua
test/box/cfg.result
+9
-9
9 additions, 9 deletions
test/box/cfg.result
with
11 additions
and
9 deletions
src/box/lua/load_cfg.lua
+
2
−
0
View file @
b245f13a
...
...
@@ -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
=
{
...
...
This diff is collapsed.
Click to expand it.
test/box/cfg.result
+
9
−
9
View file @
b245f13a
...
...
@@ -2,7 +2,7 @@
--# push filter 'admin: .*' to 'admin: <uri>'
box.cfg.nosuchoption = 1
---
- error: '[string "-- load_cfg.lua - internal file..."]:2
58
: Attempt to modify a read-only
- error: '[string "-- load_cfg.lua - internal file..."]:2
60
: 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..."]:20
4
: bad argument #1 to ''pairs''
- error: '[string "-- load_cfg.lua - internal file..."]:20
6
: 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..."]:16
0
: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:16
2
: 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..."]:18
0
: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:18
2
: Error: cfg parameter
''listen'' should be one of types: string, number'
...
box.cfg{wal_dir = 0}
---
- error: '[string "-- load_cfg.lua - internal file..."]:17
4
: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:17
6
: Error: cfg parameter
''wal_dir'' should be of type string'
...
box.cfg{coredump = 'true'}
---
- error: '[string "-- load_cfg.lua - internal file..."]:17
4
: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:17
6
: 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..."]:17
4
: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:17
6
: Error: cfg parameter
''slab_alloc_arena'' should be of type number'
...
box.cfg{sophia = "sophia"}
---
- error: '[string "-- load_cfg.lua - internal file..."]:1
68
: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:1
70
: Error: cfg parameter
''sophia'' should be a table'
...
box.cfg{sophia = {threads = "threads"}}
---
- error: '[string "-- load_cfg.lua - internal file..."]:17
4
: Error: cfg parameter
- error: '[string "-- load_cfg.lua - internal file..."]:17
6
: Error: cfg parameter
''sophia.threads'' should be of type number'
...
--------------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment