Skip to content
Snippets Groups Projects
Commit 45646592 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Fix replication/init_storage.test broken by the previous commit.

parent 16636678
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,8 @@ print '-------------------------------------------------------------'
replica = TarantoolServer()
replica.deploy("replication/cfg/replica.cfg",
replica.find_exe(self.args.builddir),
os.path.join(self.args.vardir, "replica"))
os.path.join(self.args.vardir, "replica"),
need_init=False)
for i in range(1, 10):
replica.admin('box.select(42, 0, %d)' % i)
......@@ -39,7 +40,8 @@ print '-------------------------------------------------------------'
replica = TarantoolServer()
replica.deploy("replication/cfg/replica.cfg",
replica.find_exe(self.args.builddir),
os.path.join(self.args.vardir, "replica"))
os.path.join(self.args.vardir, "replica"),
need_init=False)
replica.admin('space = box.space.test');
......
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