[infinispan-commits] Infinispan SVN: r2423 - trunk/core/src/main/java/org/infinispan/remoting.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Tue Sep 21 13:22:02 EDT 2010


Author: sannegrinovero
Date: 2010-09-21 13:22:02 -0400 (Tue, 21 Sep 2010)
New Revision: 2423

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

Modified: trunk/core/src/main/java/org/infinispan/remoting/InboundInvocationHandlerImpl.java
===================================================================
--- trunk/core/src/main/java/org/infinispan/remoting/InboundInvocationHandlerImpl.java	2010-09-21 17:20:06 UTC (rev 2422)
+++ trunk/core/src/main/java/org/infinispan/remoting/InboundInvocationHandlerImpl.java	2010-09-21 17:22:02 UTC (rev 2423)
@@ -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