Browse Source
Merge branch 'main' into feat/turkish-locale-translation
pull/4738/head
Thomas Kaul
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
6 additions and
6 deletions
-
CHANGELOG.md
-
apps/api/src/app/redis-cache/redis-cache.service.ts
-
package-lock.json
-
package.json
|
|
@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the language localization for Turkish (`tr`) |
|
|
|
|
|
|
|
## 2.162.0 - 2025-05-24 |
|
|
|
## 2.162.1 - 2025-05-24 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
|
|
@ -80,7 +80,7 @@ export class RedisCacheService { |
|
|
|
|
|
|
|
public async isHealthy() { |
|
|
|
try { |
|
|
|
const isHealthy = await Promise.race([ |
|
|
|
await Promise.race([ |
|
|
|
this.getKeys(), |
|
|
|
new Promise((_, reject) => |
|
|
|
setTimeout( |
|
|
@ -90,7 +90,7 @@ export class RedisCacheService { |
|
|
|
) |
|
|
|
]); |
|
|
|
|
|
|
|
return isHealthy === 'PONG'; |
|
|
|
return true; |
|
|
|
} catch (error) { |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
@ -1,12 +1,12 @@ |
|
|
|
{ |
|
|
|
"name": "ghostfolio", |
|
|
|
"version": "2.162.0", |
|
|
|
"version": "2.162.1", |
|
|
|
"lockfileVersion": 3, |
|
|
|
"requires": true, |
|
|
|
"packages": { |
|
|
|
"": { |
|
|
|
"name": "ghostfolio", |
|
|
|
"version": "2.162.0", |
|
|
|
"version": "2.162.1", |
|
|
|
"hasInstallScript": true, |
|
|
|
"license": "AGPL-3.0", |
|
|
|
"dependencies": { |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
{ |
|
|
|
"name": "ghostfolio", |
|
|
|
"version": "2.162.0", |
|
|
|
"version": "2.162.1", |
|
|
|
"homepage": "https://ghostfol.io", |
|
|
|
"license": "AGPL-3.0", |
|
|
|
"repository": "https://github.com/ghostfolio/ghostfolio", |
|
|
|