Skip to content

Commit

Permalink
Merge pull request #556 from vtex/increase-messages-timout
Browse files Browse the repository at this point in the history
Increase messages timeout
  • Loading branch information
eduardocesb authored Jan 31, 2024
2 parents 7e02297 + a01cbb5 commit 3a26216
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed
- Return type for the saveJSON method of VBase client

### Changed
- Increase timeout for messagesGraphQL client

## [6.46.0] - 2023-10-25
### Added
- Add disk cache steps and retry count to tracing
Expand Down
4 changes: 2 additions & 2 deletions src/service/loaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ const defaultClients: ClientsConfig = {
timeout: 1000,
},
messagesGraphQL: {
concurrency: 10,
concurrency: 12,
retries: 2,
timeout: 1000,
timeout: 2000,
},
},
}
Expand Down

0 comments on commit 3a26216

Please sign in to comment.