From dbc31fd065c51d64463cb7b21660858f95d37812 Mon Sep 17 00:00:00 2001 From: Adam Retter Date: Tue, 18 Apr 2023 16:57:27 +0100 Subject: [PATCH] Remove the second channel from the Channel Bindings example --- jms/README.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/jms/README.md b/jms/README.md index 5b45a033..5224ce05 100644 --- a/jms/README.md +++ b/jms/README.md @@ -85,21 +85,13 @@ The following example shows a `channels` object with two channels, the second ha ```yaml channels: user.signup: - description: | - This application receives command messages from this channel about users to sign up. - Minimal configuration, omitting a channel binding object. - publish: - #... - user.signedup: - description: | - This application sends events to this channel about users that have signed up. - Explicitly provides a channel binding object. + description: This application receives command messages from this channel about users to sign up. bindings: jms: - destination: user-signed-up + destination: user-sign-up destinationType: fifo-queue bindingVersion: '0.0.1' - subscribe: + publish: #... ```