Skip to content

Commit d63ec96

Browse files
committed
Update metadata version check to do the right thing re: 4.0 versions (with new versioning scheme)
1 parent 99a95ed commit d63ec96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cassandra/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3290,7 +3290,7 @@ def get_schema_parser(connection, server_version, dse_version, timeout):
32903290
elif v >= Version('6.0.0'):
32913291
return SchemaParserDSE60(connection, timeout)
32923292

3293-
if version >= Version('4-a'):
3293+
if version >= Version('4.0-alpha'):
32943294
return SchemaParserV4(connection, timeout)
32953295
elif version >= Version('3.0.0'):
32963296
return SchemaParserV3(connection, timeout)

0 commit comments

Comments
 (0)