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

* Change intraday data gathering to operate synchronously

* Update changelog
pull/2704/head^2
Thomas Kaul 6 months ago committed by GitHub
parent 4eedf64a3c
commit 1d796a9597
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

@ -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