Skip to content

Commit

Permalink
Make params as pure yaml
Browse files Browse the repository at this point in the history
it's no longer required to wrap params in a string.
  • Loading branch information
laskoviymishka authored Feb 3, 2025
1 parent d69e1f0 commit 0956ffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Below is a sample `transfer.yaml` configuration file for transferring data from
```yaml
source:
type: "pg"
params: |
params:
host: "source-db-host"
port: 5432
database: "source_database"
Expand All @@ -41,7 +41,7 @@ source:

target:
type: "ch"
params: |
params:
host: "clickhouse-db-host"
port: 9000
database: "target_database"
Expand Down

0 comments on commit 0956ffa

Please sign in to comment.