From 849f52e5f976e5f6238d1aa0eeb33e6deb2b401e Mon Sep 17 00:00:00 2001 From: Adam Holmberg Date: Tue, 29 Sep 2015 17:09:06 -0500 Subject: [PATCH] Revert "Changing to test setup to use protocol V1 instead of protocol downgrade logic" This reverts commit a1574e0297d52f2b910514476d827f4f7045b416. Following fix for negotiation in nosetest context for Python 3 PYTHON-409 --- tests/integration/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py index 92ebd0a4..b29aa00f 100644 --- a/tests/integration/__init__.py +++ b/tests/integration/__init__.py @@ -59,7 +59,7 @@ def get_server_versions(): if cass_version is not None: return (cass_version, cql_version) - c = Cluster(protocol_version=1) + c = Cluster() s = c.connect() row = s.execute('SELECT cql_version, release_version FROM system.local')[0]