Skip to content

Commit

Permalink
Fix Inskinesis Retry Wait Time (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafet authored Mar 29, 2024
1 parent 5f62e50 commit 6c5fad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inskinesis/inskinesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func NewKinesis(config Config) (StreamInterface, error) {
stopBatchChannel: make(chan bool, 10),

retryCount: config.RetryCount,
retryWaitTime: 100 * time.Millisecond,
retryWaitTime: config.RetryWaitTime,

verbose: config.Verbose,
}
Expand Down

0 comments on commit 6c5fad5

Please sign in to comment.