This is an automated email from the ASF dual-hosted git repository.
lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-examples.git
The following commit(s) were added to refs/heads/master by this push:
new fa81a56 Fix a small typo in the telegram-consumer example
fa81a56 is described below
commit fa81a562321b0745d157355e57869242e8001d5f
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Thu Jul 9 11:24:55 2020 +0200
Fix a small typo in the telegram-consumer example
---
03-knative-source-basic/telegram-consumer.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/03-knative-source-basic/telegram-consumer.groovy
b/03-knative-source-basic/telegram-consumer.groovy
index 644fb61..b078279 100644
--- a/03-knative-source-basic/telegram-consumer.groovy
+++ b/03-knative-source-basic/telegram-consumer.groovy
@@ -6,4 +6,4 @@ from('knative:channel/telegram')
.unmarshal()
.json()
.setBody { it.in.body.text }
- .log('Recieved: ${body}')
+ .log('Received: ${body}')