Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/947460abddf5ea0e95bdec508daa2e253aa65e4d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
11 additions and
5 deletions
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## Unreleased
### Fixed
- Fixed the unique job ids of the gather asset profile process
## 1.255.0 - 2023-04-15
### Added
@ -110,7 +110,7 @@ export class AdminController {
name : GATHER_ASSET_PROFILE_PROCESS ,
opts : {
. . . GATHER_ASSET_PROFILE_PROCESS_OPTIONS ,
jobId : ` ${ dataSource } - ${ symbol } } `
jobId : ` ${ dataSource } - ${ symbol } `
}
} ;
} )
@ -146,7 +146,7 @@ export class AdminController {
name : GATHER_ASSET_PROFILE_PROCESS ,
opts : {
. . . GATHER_ASSET_PROFILE_PROCESS_OPTIONS ,
jobId : ` ${ dataSource } - ${ symbol } } `
jobId : ` ${ dataSource } - ${ symbol } `
}
} ;
} )
@ -179,7 +179,7 @@ export class AdminController {
name : GATHER_ASSET_PROFILE_PROCESS ,
opts : {
. . . GATHER_ASSET_PROFILE_PROCESS_OPTIONS ,
jobId : ` ${ dataSource } - ${ symbol } } `
jobId : ` ${ dataSource } - ${ symbol } `
}
} ) ;
}
@ -120,7 +120,7 @@ export class OrderService {
name : GATHER_ASSET_PROFILE_PROCESS ,
opts : {
. . . GATHER_ASSET_PROFILE_PROCESS_OPTIONS ,
jobId : ` ${ data . SymbolProfile . connectOrCreate . create . dataSource } - ${ data . SymbolProfile . connectOrCreate . create . symbol } } `
jobId : ` ${ data . SymbolProfile . connectOrCreate . create . dataSource } - ${ data . SymbolProfile . connectOrCreate . create . symbol } `
}
} ) ;
@ -48,7 +48,7 @@ export class CronService {
name : GATHER_ASSET_PROFILE_PROCESS ,
opts : {
. . . GATHER_ASSET_PROFILE_PROCESS_OPTIONS ,
jobId : ` ${ dataSource } - ${ symbol } } `
jobId : ` ${ dataSource } - ${ symbol } `
}
} ;
} )