[infinispan-commits] Infinispan SVN: r2057 - branches/4.1.x/server/hotrod/src/main/scala/org/infinispan/server/hotrod.
infinispan-commits at lists.jboss.org
infinispan-commits at lists.jboss.org
Mon Jul 19 07:54:50 EDT 2010
Author: mircea.markus
Date: 2010-07-19 07:54:50 -0400 (Mon, 19 Jul 2010)
New Revision: 2057
Modified:
branches/4.1.x/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodDecoder.scala
Log:
ISPN-516 - HotRod: improve protocol to be able to transfer the entire state of the cache
- fixed compilation issue
Modified: branches/4.1.x/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodDecoder.scala
===================================================================
--- branches/4.1.x/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodDecoder.scala 2010-07-19 11:44:21 UTC (rev 2056)
+++ branches/4.1.x/server/hotrod/src/main/scala/org/infinispan/server/hotrod/HotRodDecoder.scala 2010-07-19 11:54:50 UTC (rev 2057)
@@ -103,7 +103,7 @@
null // Unsupported
override def handleCustomRequest(h: HotRodHeader, b: ChannelBuffer, cache: Cache[ByteArrayKey, CacheValue]): AnyRef = {
- h.decoder.handleCustomRequest(h, b, cache)
+ val result = h.decoder.handleCustomRequest(h, b, cache)
if (isTrace) trace("About to return: " + result)
result
}
More information about the infinispan-commits
mailing list