Skip to content

Commit

Permalink
fix: increase number replace timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
airenas committed May 23, 2024
1 parent ca0cb87 commit eb015ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/processor/numberReplace.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type ssmlNumberReplace struct {
func NewSSMLNumberReplace(urlStr string) (synthesizer.Processor, error) {
res := &ssmlNumberReplace{}
var err error
res.httpWrap, err = newHTTPWrapBackoff(urlStr, time.Second*10)
res.httpWrap, err = newHTTPWrapBackoff(urlStr, time.Second*20)

if err != nil {
return nil, errors.Wrap(err, "can't init http client")
Expand Down

0 comments on commit eb015ae

Please sign in to comment.