Skip to content
Snippets Groups Projects
Commit 915ff01e authored by Roman Tsisyk's avatar Roman Tsisyk
Browse files

Fix #169: box.schema.space.bless() is not called during recovering snapshot

The bug is already fixed and tests cases are already added.
This patch removes unused fix_lua hack from schema.cc.
parent b066f5f8
No related branches found
No related tags found
No related merge requests found
......@@ -326,12 +326,6 @@ space_end_recover_snapshot()
space_foreach(do_one_recover_step, NULL);
}
static void
fix_lua(struct space *space, void * /* param */)
{
box_lua_space_new(tarantool_L, space);
}
static inline void
space_end_recover_cb(EngineFactory *f, void *udate)
{
......@@ -349,9 +343,6 @@ space_end_recover()
engine_foreach(space_end_recover_cb, NULL);
space_foreach(do_one_recover_step, NULL);
/* TODO: temporary solution for Bug#1229709 */
space_foreach(fix_lua, NULL);
}
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment