mirror of https://github.com/apache/cassandra
(re)tagging 0.4.1
git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/tags/cassandra-0.4.1@824462 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
commit
18619e5035
|
|
@ -8,6 +8,7 @@
|
|||
* Add SnapshotBeforeCompaction configuration option (CASSANDRA-426)
|
||||
* Fix compaction abort under insufficient disk space (CASSANDRA-473)
|
||||
* Fix reading subcolumn slice from tombstoned CF (CASSANDRA-484)
|
||||
* Fix race condition in RVH causing occasional NPE (CASSANDRA-478)
|
||||
|
||||
|
||||
0.4.0
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class ConsistencyManager implements Runnable
|
|||
{
|
||||
List<Message> responses_ = new ArrayList<Message>();
|
||||
|
||||
public void response(Message msg)
|
||||
public synchronized void response(Message msg)
|
||||
{
|
||||
responses_.add(msg);
|
||||
if ( responses_.size() == ConsistencyManager.this.replicas_.size() )
|
||||
|
|
|
|||
Loading…
Reference in New Issue