Feature/increase number of attempts of queue jobs (#3376)
* Increase number of attempts * Update changelog
This commit is contained in:
parent
053c7e591e
commit
2090db1199
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Increased the number of attempts of queue jobs from `10` to `12` (fail later)
|
||||||
- Upgraded `ionicons` from version `7.3.0` to `7.4.0`
|
- Upgraded `ionicons` from version `7.3.0` to `7.4.0`
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -66,7 +66,7 @@ export const EMERGENCY_FUND_TAG_ID = '4452656d-9fa4-4bd0-ba38-70492e31d180';
|
|||||||
|
|
||||||
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: 10,
|
attempts: 12,
|
||||||
backoff: {
|
backoff: {
|
||||||
delay: ms('1 minute'),
|
delay: ms('1 minute'),
|
||||||
type: 'exponential'
|
type: 'exponential'
|
||||||
@ -76,7 +76,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: 10,
|
attempts: 12,
|
||||||
backoff: {
|
backoff: {
|
||||||
delay: ms('1 minute'),
|
delay: ms('1 minute'),
|
||||||
type: 'exponential'
|
type: 'exponential'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user