Browse Source
Bugfix/fix number of attempts in queue jobs view of admin control panel (#5447)
* Fix number of attempts
* Update changelog
pull/5192/merge
Thomas Kaul
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/admin/queue/queue.service.ts
|
@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Upgraded `ngx-skeleton-loader` from version `11.2.1` to `11.3.0` |
|
|
- Upgraded `ngx-skeleton-loader` from version `11.2.1` to `11.3.0` |
|
|
- Upgraded `yahoo-finance2` from version `3.6.4` to `3.8.0` |
|
|
- Upgraded `yahoo-finance2` from version `3.6.4` to `3.8.0` |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed the number of attempts in the queue jobs view of the admin control panel |
|
|
|
|
|
|
|
|
## 2.195.0 - 2025-08-29 |
|
|
## 2.195.0 - 2025-08-29 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
@ -71,7 +71,7 @@ export class QueueService { |
|
|
.slice(0, limit) |
|
|
.slice(0, limit) |
|
|
.map(async (job) => { |
|
|
.map(async (job) => { |
|
|
return { |
|
|
return { |
|
|
attemptsMade: job.attemptsMade + 1, |
|
|
attemptsMade: job.attemptsMade, |
|
|
data: job.data, |
|
|
data: job.data, |
|
|
finishedOn: job.finishedOn, |
|
|
finishedOn: job.finishedOn, |
|
|
id: job.id, |
|
|
id: job.id, |
|
|