You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
box.once(key, func) call will be executed only first time if the same key will be used in different tests or if a test with this call will be executed twice on the same worker.
Example that reproduces the problem on tarantool-2.4.0-82-gd8a9f1d9c (in fact on any actual tarantool version at the moment of writing):
box.once(key, func)
call will be executed only first time if the samekey
will be used in different tests or if a test with this call will be executed twice on the same worker.Example that reproduces the problem on tarantool-2.4.0-82-gd8a9f1d9c (in fact on any actual tarantool version at the moment of writing):
The log of the instance will show
attempt to index local 'space' (a nil value)
errors:It is because
box.once()
is used in test/vinyl/stress.lua (which is required from test/vinyl/stress.test.lua).The text was updated successfully, but these errors were encountered: