Browse Source
Bugfix/startup error in data gathering caused by uninitialized data provider mappings (#7333)
* Initialize data provider mappings
* Update changelog
pull/7331/head^2
Thomas Kaul
14 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/data-provider.service.ts
|
|
|
@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Resolved a startup error in data gathering caused by uninitialized data provider mappings |
|
|
|
- Improved the error handling in the get quotes functionality of the _Financial Modeling Prep_ service |
|
|
|
|
|
|
|
## 3.26.0 - 2026-07-14 |
|
|
|
|
|
|
|
@ -44,7 +44,7 @@ import { AssetProfileInvalidError } from './errors/asset-profile-invalid.error'; |
|
|
|
export class DataProviderService implements OnModuleInit { |
|
|
|
private readonly logger = new Logger(DataProviderService.name); |
|
|
|
|
|
|
|
private dataProviderMapping: { [dataProviderName: string]: string }; |
|
|
|
private dataProviderMapping: { [dataProviderName: string]: string } = {}; |
|
|
|
|
|
|
|
public constructor( |
|
|
|
private readonly configurationService: ConfigurationService, |
|
|
|
|