[tarantool-patches] [PATCH] replication: fix a failing assert in replica_on_applier_disconnect()

Vladimir Davydov vdavydov.dev at gmail.com
Tue Aug 7 19:50:31 MSK 2018


On Mon, Aug 06, 2018 at 05:14:05PM +0300, Sergey Petrenko wrote:
> diff --git a/test/replication/misc.test.lua b/test/replication/misc.test.lua
> index c05e52165..27c1a4821 100644
> --- a/test/replication/misc.test.lua
> +++ b/test/replication/misc.test.lua
> @@ -81,3 +81,15 @@ test_run:cmd("switch default")
>  test_run:drop_cluster(SERVERS)
>  
>  box.schema.user.revoke('guest', 'replication')
> +
> +-- gh-3510 assertion failure in replica_on_applier_disconnect()
> +test_run:cmd('create server er_load1 with script="replication/er_load1.lua"')
> +test_run:cmd('create server er_load2 with script="replication/er_load2.lua"')
> +test_run:cmd('start server er_load1 with wait=False, wait_load=False')
> +test_run:cmd('start server er_load2 with wait=False, wait_load=False')
> +require('fiber').sleep(0.5)
> +test_run:cmd('stop server er_load1')
> +require('fiber').sleep(1)

<kostja-mode>
  These sleep()'s are way too long. They will make our tests run forever.
  Please change to 0.00001 or smaller or rewrite the test so that you do
  not need them.
</kostja-mode>



More information about the Tarantool-patches mailing list