Feature/decrease number of attempts of queue jobs (#1006)
* Decrease number of attempts * Update changelog
This commit is contained in:
parent
bd33855a27
commit
0f9d142afe
@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Decreased the number of attempts of queue jobs from `20` to `10` (fail earlier)
|
||||||
- Improved the message for data provider errors in the client
|
- Improved the message for data provider errors in the client
|
||||||
- Changed the label from _Balance_ to _Cash Balance_ in the account dialog
|
- Changed the label from _Balance_ to _Cash Balance_ in the account dialog
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ export const DEFAULT_DATE_FORMAT_MONTH_YEAR = 'MMM yyyy';
|
|||||||
|
|
||||||
export const GATHER_ASSET_PROFILE_PROCESS = 'GATHER_ASSET_PROFILE';
|
export const GATHER_ASSET_PROFILE_PROCESS = 'GATHER_ASSET_PROFILE';
|
||||||
export const GATHER_ASSET_PROFILE_PROCESS_OPTIONS: JobOptions = {
|
export const GATHER_ASSET_PROFILE_PROCESS_OPTIONS: JobOptions = {
|
||||||
attempts: 20,
|
attempts: 10,
|
||||||
backoff: {
|
backoff: {
|
||||||
delay: ms('1 minute'),
|
delay: ms('1 minute'),
|
||||||
type: 'exponential'
|
type: 'exponential'
|
||||||
@ -65,7 +65,7 @@ export const GATHER_ASSET_PROFILE_PROCESS_OPTIONS: JobOptions = {
|
|||||||
export const GATHER_HISTORICAL_MARKET_DATA_PROCESS =
|
export const GATHER_HISTORICAL_MARKET_DATA_PROCESS =
|
||||||
'GATHER_HISTORICAL_MARKET_DATA';
|
'GATHER_HISTORICAL_MARKET_DATA';
|
||||||
export const GATHER_HISTORICAL_MARKET_DATA_PROCESS_OPTIONS: JobOptions = {
|
export const GATHER_HISTORICAL_MARKET_DATA_PROCESS_OPTIONS: JobOptions = {
|
||||||
attempts: 20,
|
attempts: 10,
|
||||||
backoff: {
|
backoff: {
|
||||||
delay: ms('1 minute'),
|
delay: ms('1 minute'),
|
||||||
type: 'exponential'
|
type: 'exponential'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user