Browse Source

Bugfix/change intraday data gathering to operate synchronously (#2705)

* Change intraday data gathering to operate synchronously

* Update changelog
pull/2704/head^2
Thomas Kaul 10 months ago
committed by GitHub
parent
commit
1d796a9597
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 2
      apps/api/src/services/data-provider/data-provider.service.ts

4
CHANGELOG.md

@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Respected the `withExcludedAccounts` flag in the account balance time series
### Fixed
- Changed the mechanism of the `INTRADAY` data gathering to operate synchronously avoiding database deadlocks
## 2.27.1 - 2023-11-28
### Changed

2
apps/api/src/services/data-provider/data-provider.service.ts

@ -346,7 +346,7 @@ export class DataProviderService {
);
try {
this.marketDataService.updateMany({
await this.marketDataService.updateMany({
data: Object.keys(response)
.filter((symbol) => {
return (

Loading…
Cancel
Save