lratc commented on code in PR #1288: URL: https://github.com/apache/cassandra-python-driver/pull/1288#discussion_r3172855687
########## cassandra/metadata.py: ########## @@ -19,7 +19,7 @@ from collections import defaultdict from collections.abc import Mapping from functools import total_ordering -from hashlib import md5 +import hashlib Review Comment: Agreed. I have changed the approach to use a similar pattern to the one used for murmur3 (I inverted the if logic to avoid nesting the if statements). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

