Nicolas Favre-Felix created CASSANDRA-6836:
----------------------------------------------
Summary: WriteTimeoutException always reports that the serial CL
is "SERIAL"
Key: CASSANDRA-6836
URL: https://issues.apache.org/jira/browse/CASSANDRA-6836
Project: Cassandra
Issue Type: Bug
Components: Core
Reporter: Nicolas Favre-Felix
Priority: Minor
In StorageProxy.proposePaxos, the WriteTimeoutException is thrown with
information about the consistency level. This CL is hardcoded to
ConsistencyLevel.SERIAL, which might be wrong when LOCAL_SERIAL is used:
{code}
if (timeoutIfPartial && !callback.isFullyRefused())
throw new WriteTimeoutException(WriteType.CAS,
ConsistencyLevel.SERIAL, callback.getAcceptCount(), requiredParticipants);
{code}
Suggested fix: pass consistencyForPaxos as a parameter to proposePaxos().
--
This message was sent by Atlassian JIRA
(v6.2#6252)