Repository: cassandra-dtest Updated Branches: refs/heads/master 79d8ddd4a -> 17e0656a9
TestAuth: shutdown client before cluster stop patch by Jay Zhuang; reviewed by Jason Brown for CASSANDRA-14600 Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/17e0656a Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/17e0656a Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/17e0656a Branch: refs/heads/master Commit: 17e0656a948d52cc55a40e8bf6dc139dd5fa6920 Parents: 79d8ddd Author: Jay Zhuang <[email protected]> Authored: Sat Jul 28 18:56:56 2018 -0700 Committer: Jay Zhuang <[email protected]> Committed: Mon Jul 30 10:32:15 2018 -0700 ---------------------------------------------------------------------- auth_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/17e0656a/auth_test.py ---------------------------------------------------------------------- diff --git a/auth_test.py b/auth_test.py index 8d82b63..f2cd844 100644 --- a/auth_test.py +++ b/auth_test.py @@ -69,8 +69,8 @@ class TestAuth(Tester): logger.debug("Repairing before altering RF") self.cluster.repair() - logger.debug("Shutting down client session") - session.shutdown() + logger.debug("Shutting down client cluster") + session.cluster.shutdown() # make sure schema change is persistent logger.debug("Stopping cluster..") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
