Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/4865c45fd4a34ba10976b39a1e6da2a27dc5e9ce You should set ROOT_URL correctly, otherwise the web may not work correctly.

Feature/reduce data gathering interval to every four hours ()

* Reduce execution interval

* Update changelog
pull/1609/head^2
Thomas Kaul 2 years ago committed by GitHub
parent 2beceb36cf
commit 4865c45fd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the date formatting in the tooltip of the dividend timeline grouped by month / year
- Improved the date formatting in the tooltip of the investment timeline grouped by month / year
- Reduced the execution interval of the data gathering to every 4 hours
## 1.227.1 - 2023-01-14

@ -19,8 +19,8 @@ export class CronService {
private readonly twitterBotService: TwitterBotService
) {}
@Cron(CronExpression.EVERY_HOUR)
public async runEveryHour() {
@Cron(CronExpression.EVERY_4_HOURS)
public async runEveryFourHours() {
await this.dataGatheringService.gather7Days();
}

Loading…
Cancel
Save