You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/07/13 12:16:54 UTC

[camel-kamelets-examples] branch main updated: Removed wrong copy paste of command for postgresql example

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 0171771  Removed wrong copy paste of command for postgresql example
0171771 is described below

commit 0171771f55389b3941f2570a4f748bbd18190b12
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 13 14:16:40 2023 +0200

    Removed wrong copy paste of command for postgresql example
---
 jbang/postgresql-gcp-secret-refresh/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jbang/postgresql-gcp-secret-refresh/README.adoc b/jbang/postgresql-gcp-secret-refresh/README.adoc
index 26be897..c643ca2 100644
--- a/jbang/postgresql-gcp-secret-refresh/README.adoc
+++ b/jbang/postgresql-gcp-secret-refresh/README.adoc
@@ -165,7 +165,7 @@ postgres=# CREATE TABLE accounts (
         city VARCHAR ( 50 ) NOT NULL
 );
 CREATE TABLE
-postgres=# postgres=# INSERT into accounts (username,city) VALUES ('andrea', 'Roma');
+postgres=# INSERT into accounts (username,city) VALUES ('andrea', 'Roma');
 INSERT 0 1
 postgres=# INSERT into accounts (username,city) VALUES ('John', 'New York');
 INSERT 0 1