scylladb / gocql

Package gocql implements a fast and robust ScyllaDB client for the Go programming language.
https://docs.scylladb.com/stable/using-scylla/drivers/cql-drivers/scylla-go-driver.html
BSD 3-Clause "New" or "Revised" License
169 stars 47 forks source link

Remove unnecessary cowHostList lock #194

Closed dkropachev closed 3 weeks ago

dkropachev commented 3 weeks ago

There is no need to have a lock there, cowHostList does copy on write, which makes it safe to use the list without locking it.