I noticed that LOCAL_ONE consistency level does not work due to an error in ConsistencyEnum.php.
The correct value for it is:
const CONSISTENCY_LOCAL_ONE = 0xA;
the current value is 0x0010, and this leads to this cassandra error message: "Protocol error: Unknown code 16 for a consistency level"
Please, fix this. Thank you!
I noticed that LOCAL_ONE consistency level does not work due to an error in ConsistencyEnum.php.
The correct value for it is:
const CONSISTENCY_LOCAL_ONE = 0xA;
the current value is 0x0010, and this leads to this cassandra error message: "Protocol error: Unknown code 16 for a consistency level"
Please, fix this. Thank you!