Skip to content

Commit

Permalink
Apply feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Apr 30, 2024
1 parent a90e4a7 commit ef871c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/user/migration-guide/v4-v5.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Allow custom timeout for external services](https://github.com/bakdata/kpops/pull/485)

The global `timeout` setting has been removed. Instead, an individual timeout can be set for each external service.
The global `timeout` setting has been removed. Instead, an individual timeout can be set for each external service. The default is 30 seconds.

#### config.yaml

Expand All @@ -11,12 +11,12 @@ The global `timeout` setting has been removed. Instead, an individual timeout ca

kafka_rest:
url: "http://my-custom-rest.url:8082"
+ timeout: 300
+ timeout: 30
kafka_connect:
url: "http://my-custom-connect.url:8083"
+ timeout: 300
+ timeout: 30
schema_registry:
enabled: true
url: "http://my-custom-sr.url:8081"
+ timeout: 300
+ timeout: 30
```

0 comments on commit ef871c2

Please sign in to comment.