Skip to content

Commit

Permalink
fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
liugddx committed Sep 27, 2022
1 parent 2f9acc3 commit 0341b51
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ source{
jdbc{
url = "jdbc:postgresql://postgresql:5432/test"
driver = "org.postgresql.Driver"
user = "root"
user = "test"
password = "test"
query = "select name , age from source"
}
Expand All @@ -37,7 +37,7 @@ sink {
jdbc {
url = "jdbc:postgresql://postgresql:5432/test"
driver = "org.postgresql.Driver"
user = "root"
user = "test"
password = "test"
query = "insert into sink(name,age) values(?,?)"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ source{
jdbc{
url = "jdbc:postgresql://postgresql:5432/test"
driver = "org.postgresql.Driver"
user = "root"
user = "test"
password = "test"
query = "select user_id, name , age from source"
partition_column= "user_id"
Expand All @@ -44,7 +44,7 @@ sink {

url = "jdbc:postgresql://postgresql:5432/test"
driver = "org.postgresql.Driver"
user = "root"
user = "test"
password = "test"
connection_check_timeout_sec = 100
query = "insert into sink(name,age) values(?,?)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sink {
url = "jdbc:postgresql://postgresql:5432/test"
driver = "org.postgresql.Driver"

user = "root"
user = "test"
password = "test"
connection_check_timeout_sec = 100
query = "insert into sink(name,age) values(?,?)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sink {
jdbc {
url = "jdbc:postgresql://postgresql:5432/test"
driver = "org.postgresql.Driver"
user = "root"
user = "test"
password = "test"

max_retries = 0
Expand Down

0 comments on commit 0341b51

Please sign in to comment.