From 334c9c66717fe07d6d8aec5c7816fc5054684d73 Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Mon, 18 Feb 2013 13:43:09 +0100 Subject: [PATCH] #2989 - Switching to mina2 for Camel examples --- akka-docs/rst/java/code/docs/camel/MyEndpoint.java | 2 +- akka-docs/rst/scala/code/docs/camel/Introduction.scala | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/akka-docs/rst/java/code/docs/camel/MyEndpoint.java b/akka-docs/rst/java/code/docs/camel/MyEndpoint.java index 1259cc06ce..0c31f200ed 100644 --- a/akka-docs/rst/java/code/docs/camel/MyEndpoint.java +++ b/akka-docs/rst/java/code/docs/camel/MyEndpoint.java @@ -25,7 +25,7 @@ public class MyEndpoint extends UntypedConsumerActor{ } public MyEndpoint() { - this.uri = "mina:tcp://localhost:6200?textline=true"; + this.uri = "mina2:tcp://localhost:6200?textline=true"; } } //#Consumer-mina \ No newline at end of file diff --git a/akka-docs/rst/scala/code/docs/camel/Introduction.scala b/akka-docs/rst/scala/code/docs/camel/Introduction.scala index e1b5f17a17..2adc7a3863 100644 --- a/akka-docs/rst/scala/code/docs/camel/Introduction.scala +++ b/akka-docs/rst/scala/code/docs/camel/Introduction.scala @@ -12,7 +12,7 @@ object Introduction { import akka.camel.{ CamelMessage, Consumer } class MyEndpoint extends Consumer { - def endpointUri = "mina:tcp://localhost:6200?textline=true" + def endpointUri = "mina2:tcp://localhost:6200?textline=true" def receive = { case msg: CamelMessage ⇒ { /* ... */ } @@ -82,7 +82,7 @@ object Introduction { import scala.concurrent.duration._ class MyEndpoint extends Consumer { - def endpointUri = "mina:tcp://localhost:6200?textline=true" + def endpointUri = "mina2:tcp://localhost:6200?textline=true" def receive = { case msg: CamelMessage ⇒ { /* ... */ }