Updated Branches: refs/heads/trunk d634f0516 -> fa9bbf7e1
fix build Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/fa9bbf7e Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/fa9bbf7e Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/fa9bbf7e Branch: refs/heads/trunk Commit: fa9bbf7e196835ea9c4aad684b840aeac85e8eda Parents: fe5fa0e Author: Jonathan Ellis <[email protected]> Authored: Sat Sep 22 15:18:54 2012 -0500 Committer: Jonathan Ellis <[email protected]> Committed: Sat Sep 22 15:18:54 2012 -0500 ---------------------------------------------------------------------- .../org/apache/cassandra/service/StorageProxy.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/fa9bbf7e/src/java/org/apache/cassandra/service/StorageProxy.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/service/StorageProxy.java b/src/java/org/apache/cassandra/service/StorageProxy.java index 6834987..122d3fd 100644 --- a/src/java/org/apache/cassandra/service/StorageProxy.java +++ b/src/java/org/apache/cassandra/service/StorageProxy.java @@ -790,7 +790,7 @@ public class StorageProxy implements StorageProxyMBean responseHandler.response(null); // then send to replicas, if any - Set<InetAddress> remotes = Sets.difference(ImmutableSet.copyOf(targets), ImmutableSet.of(FBUtilities.getBroadcastAddress())); + final Set<InetAddress> remotes = Sets.difference(ImmutableSet.copyOf(targets), ImmutableSet.of(FBUtilities.getBroadcastAddress())); if (cm.shouldReplicateOnWrite() && !remotes.isEmpty()) { // We do the replication on another stage because it involves a read (see CM.makeReplicationMutation)
