patka / cassandra-migration

Schema migration library for Cassandra
MIT License
152 stars 47 forks source link

Add support for setting the serial consistency level for leader election #86

Open ane opened 7 months ago

ane commented 7 months ago

Defaulting to SERIAL, the LWTs used for leader election now have the consistency levels configurable, and are no longer using QUORUM, since that doesn't make sense for LWTs anyway. I don't know what C* does when you pass a LWT using QUORUM, it probably defaults to SERIAL.

This should fix #45

ane commented 7 months ago

I also added a simple Github Action for running mvn test for CI.