Zen

Source string Source string

local log = require('log') local function rebuild_index(idx) local index_name = idx[3] local space_name = box.space[idx[1]].name log.info("Rebuilding index %s on space %s", index_name, space_name) if (idx[2] == 0) then log.error("Cannot rebuild primary index %s on space %s. Please, ".. "recreate the space manually", index_name, space_name) return end log.info("Deleting index %s on space %s", index_name, space_name) local v = box.space._index:delete{idx[1], idx[2]} if v == nil then log.error("Couldn't find index %s on space %s", index_name, space_name) return end log.info("Done") log.info("Creating index %s on space %s", index_name, space_name) box.space._index:insert(v) end for _, idx in pairs(require_rebuild) do rebuild_index(idx) end
English Actions

Loading…

User avatar None

New source string

testing_project / Documentation: book/admin/upgrades/2.10.1English

a year ago
Browse all string changes

Things to check

Multiple unnamed variables 1

There are multiple unnamed variables in the string, making it impossible for translators to reorder them

Reset

Glossary

English English
No related strings found in the glossary.

String information

Flags
python-format, read-only
String age
a year ago
Last updated
a year ago
Source string age
a year ago
Translation file
string 14