[infinispan-commits] Infinispan SVN: r2422 - branches/4.2.x/core/src/main/java/org/infinispan/remoting.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Tue Sep 21 13:20:06 EDT 2010


Author: sannegrinovero
Date: 2010-09-21 13:20:06 -0400 (Tue, 21 Sep 2010)
New Revision: 2422

Modified:
   branches/4.2.x/core/src/main/java/org/infinispan/remoting/InboundInvocationHandlerImpl.java
Log:
typo in logged message

Modified: branches/4.2.x/core/src/main/java/org/infinispan/remoting/InboundInvocationHandlerImpl.java
===================================================================
--- branches/4.2.x/core/src/main/java/org/infinispan/remoting/InboundInvocationHandlerImpl.java	2010-09-21 08:43:28 UTC (rev 2421)
+++ branches/4.2.x/core/src/main/java/org/infinispan/remoting/InboundInvocationHandlerImpl.java	2010-09-21 17:20:06 UTC (rev 2422)
@@ -56,8 +56,8 @@
       if (cr == null) {
          // lets see if the cache is *defined* and perhaps just not started.
          if (isDefined(cacheName)) {
-            log.info("Will trya nd wait for the cache to start");
-            long giveupTime = System.currentTimeMillis() + 30000; // arbitraty (?) wait time for caches to start
+            log.info("Will try and wait for the cache to start");
+            long giveupTime = System.currentTimeMillis() + 30000; // arbitrary (?) wait time for caches to start
             while (cr == null && System.currentTimeMillis() < giveupTime) {
                Thread.sleep(100);
                cr = gcr.getNamedComponentRegistry(cacheName);



More information about the infinispan-commits mailing list