You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by fh...@apache.org on 2006/03/23 16:43:31 UTC

svn commit: r388192 - /tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tipis/ReplicatedMap.java

Author: fhanik
Date: Thu Mar 23 07:43:19 2006
New Revision: 388192

URL: http://svn.apache.org/viewcvs?rev=388192&view=rev
Log:
minor updates

Modified:
    tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tipis/ReplicatedMap.java

Modified: tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tipis/ReplicatedMap.java
URL: http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tipis/ReplicatedMap.java?rev=388192&r1=388191&r2=388192&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tipis/ReplicatedMap.java (original)
+++ tomcat/container/tc5.5.x/modules/groupcom/src/share/org/apache/catalina/tribes/tipis/ReplicatedMap.java Thu Mar 23 07:43:19 2006
@@ -114,7 +114,7 @@
         MapMessage msg = new MapMessage(getMapContextName(), MapMessage.MSG_BACKUP, false,
                                         (Serializable) key, null, null, backup);
 
-        getChannel().send(getMapMembers(), msg, Channel.SEND_OPTIONS_DEFAULT);
+        getChannel().send(getMapMembers(), msg, getChannelSendOptions());
 
         return backup;
     }
@@ -275,7 +275,7 @@
         while (i.hasNext()) {
             Map.Entry e = (Map.Entry) i.next();
             MapEntry entry = (MapEntry) e.getValue();
-            if (entry.isPrimary()) values.add(entry.getValue());
+            values.add(entry);
         }
         return Collections.unmodifiableCollection(values);
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org