Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/compat/compat_tutorial — English |
Things to check
Glossary
English | English | ||
---|---|---|---|
No related strings found in the glossary. |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/compat/compat_tutorial — English |
English | English | ||
---|---|---|---|
No related strings found in the glossary. |
name = 'option_4',
default = 'new',
brief = "<...>",
obsolete = nil, -- you can explicitly mark the option as non-obsolete
action = function(is_new)
print(("option_4 action was called with is_new = %s!"):format(is_new))
end,
run_action_now = true
}
option_4 postaction was called with is_new = true!
---
...
tarantool> compat.add_option{ -- hot reload of option_4
name = 'option_4',
default = 'old', -- different default
brief = "<...>",
action = function(is_new)
print(("new option_4 action was called with is_new = %s!"):format(is_new))
end
}
---
... -- action is not called by default