File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ local manager_config_spec = {
40
40
-- Could relax this requirement.
41
41
initial_configuration = {required = true },
42
42
schema_name = {required = true },
43
- worker_default_scheduling = {default = {busywait = true }},
43
+ worker_default_scheduling = {default = {}},
44
44
default_schema = {},
45
45
log_level = {default = default_log_level },
46
46
rpc_trace_file = {},
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ local scheduling_opts = {
16
16
cpu = {}, -- CPU index (integer).
17
17
real_time = {}, -- Boolean.
18
18
ingress_drop_monitor = {}, -- Action string: one of 'flush' or 'warn'.
19
- busywait = {}, -- Boolean.
19
+ busywait = {default = true }, -- Boolean.
20
20
j = {}, -- Profiling argument string, e.g. "p" or "v".
21
21
eval = {} -- String.
22
22
}
99
99
function selftest ()
100
100
print (' selftest: lib.scheduling' )
101
101
loadstring (stage ({}))()
102
- loadstring (stage ({busywait = true }))()
102
+ loadstring (stage ({busywait = false }))()
103
103
loadstring (stage ({eval = ' print("lib.scheduling: eval test")' }))()
104
104
print (' selftest: ok' )
105
105
end
You can’t perform that action at this time.
0 commit comments