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
$ tarantool
box.cfg{}
os.exit()
$ tarantool
require('queue')
box.cfg{read_only = true}
E> ER_READONLY: Can't modify data because this instance is in read-only mode.
os.exit()
$ tarantool
box.cfg{read_only = true}
require('queue')
E> ER_READONLY: Can't modify data because this instance is in read-only mode.
os.exit()