summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cpp/examples/examples/request-response/client.cpp2
-rw-r--r--cpp/examples/examples/request-response/verify.in12
2 files changed, 7 insertions, 7 deletions
diff --git a/cpp/examples/examples/request-response/client.cpp b/cpp/examples/examples/request-response/client.cpp
index 717df64be0..b282e133e7 100644
--- a/cpp/examples/examples/request-response/client.cpp
+++ b/cpp/examples/examples/request-response/client.cpp
@@ -123,7 +123,7 @@ int main(int argc, char** argv) {
// of the response queue.
stringstream response_queue;
- response_queue << "client " << session.getId();
+ response_queue << "client" << session.getId();
// Use the name of the response queue as the routing key
diff --git a/cpp/examples/examples/request-response/verify.in b/cpp/examples/examples/request-response/verify.in
index 18d61b5f75..fb12502a48 100644
--- a/cpp/examples/examples/request-response/verify.in
+++ b/cpp/examples/examples/request-response/verify.in
@@ -1,5 +1,5 @@
==== ./client
-Activating response queue listener for: client
+Activating response queue listener for: client
Request: Twas brillig, and the slithy toves
Request: Did gire and gymble in the wabe.
Request: All mimsy were the borogroves,
@@ -9,14 +9,14 @@ Response: TWAS BRILLIG, AND THE SLITHY TOVES
Response: DID GIRE AND GYMBLE IN THE WABE.
Response: ALL MIMSY WERE THE BOROGROVES,
Response: AND THE MOME RATHS OUTGRABE.
-Shutting down listener for client
+Shutting down listener for client
====
==== remove_uuid server.out
==== ./server
Activating request queue listener for: request
Waiting for requests
-Request: Twas brillig, and the slithy toves (client )
-Request: Did gire and gymble in the wabe. (client )
-Request: All mimsy were the borogroves, (client )
-Request: And the mome raths outgrabe. (client )
+Request: Twas brillig, and the slithy toves (client)
+Request: Did gire and gymble in the wabe. (client)
+Request: All mimsy were the borogroves, (client)
+Request: And the mome raths outgrabe. (client)
====