Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/d1e5d58e014bf122a6c3156391dd38e2583fafa8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
1 deletions
@ -22,11 +22,12 @@ export default async function handler(req, res) {
. then ( ( response ) => response . body )
. catch ( ( error ) => {
logger . error ( "Error getting ingresses: %d %s %s" , error . statusCode , error . body , error . response ) ;
logger . debug ( error ) ;
return null ;
} ) ;
if ( ! nodes ) {
return res . status ( 500 ) . send ( {
error : " unknown error ",
error : " An error occurred while fetching nodes, check logs for more details. ",
} ) ;
}
let cpuTotal = 0 ;
@ -198,6 +198,7 @@ export async function servicesFromKubernetes() {
. then ( ( response ) => response . body )
. catch ( ( error ) => {
logger . error ( "Error getting ingresses: %d %s %s" , error . statusCode , error . body , error . response ) ;
logger . debug ( error ) ;
return null ;
} ) ;
@ -215,6 +216,7 @@ export async function servicesFromKubernetes() {
error . body ,
error . response ,
) ;
logger . debug ( error ) ;
}
return [ ] ;
@ -231,6 +233,7 @@ export async function servicesFromKubernetes() {
error . body ,
error . response ,
) ;
logger . debug ( error ) ;
}
return [ ] ;
@ -300,6 +303,7 @@ export async function servicesFromKubernetes() {
constructedService = JSON . parse ( substituteEnvironmentVars ( JSON . stringify ( constructedService ) ) ) ;
} catch ( e ) {
logger . error ( "Error attempting k8s environment variable substitution." ) ;
logger . debug ( e ) ;
}
return constructedService ;