Browse Source
Feature/improve error logs in scraper configuration test (#3730)
* Improve error logs
* Update changelog
pull/3737/head
Thomas Kaul
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
2 deletions
-
CHANGELOG.md
-
apps/api/src/app/admin/admin.controller.ts
|
|
@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Changed the data format of the environment variable `CACHE_QUOTES_TTL` from seconds to milliseconds |
|
|
|
- Changed the data format of the environment variable `CACHE_TTL` from seconds to milliseconds |
|
|
|
- Removed the environment variable `MAX_ITEM_IN_CACHE` |
|
|
|
- Improved the error logs of the scraper configuration test in the asset profile details dialog of the admin control |
|
|
|
- Improved the language localization for Polish (`pl`) |
|
|
|
- Migrated from `cache-manager-redis-store` to `cache-manager-redis-yet` |
|
|
|
- Upgraded `cache-manager` from version `3.4.3` to `5.7.6` |
|
|
|
|
|
@ -239,9 +239,11 @@ export class AdminController { |
|
|
|
return { price }; |
|
|
|
} |
|
|
|
|
|
|
|
throw new Error('Could not parse the current market price'); |
|
|
|
throw new Error( |
|
|
|
`Could not parse the current market price for ${symbol} (${dataSource})` |
|
|
|
); |
|
|
|
} catch (error) { |
|
|
|
Logger.error(error); |
|
|
|
Logger.error(error, 'AdminController'); |
|
|
|
|
|
|
|
throw new HttpException(error.message, StatusCodes.BAD_REQUEST); |
|
|
|
} |
|
|
|