Skip to content

Commit

Permalink
Fix kafka write timeout error
Browse files Browse the repository at this point in the history
  • Loading branch information
emplam27 committed Feb 13, 2025
1 parent 7ff0767 commit 5f16ef1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/yorkie/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@ func newServerCmd() *cobra.Command {

if kafkaAddresses != "" && kafkaTopic != "" {
conf.Kafka = &messagebroker.Config{
Addresses: kafkaAddresses,
Topic: kafkaTopic,
Addresses: kafkaAddresses,
Topic: kafkaTopic,
WriteTimeout: kafkaWriteTimeout.String(),
}
}

Expand Down

0 comments on commit 5f16ef1

Please sign in to comment.