diff --git a/src/app/authorisation.service.ts b/src/app/authorisation.service.ts index ffa9f2cdf0f6b78de6be2b173455e36d18f80f0b..fc84157bf4ca5fc40ff867f030940133ca1c5225 100644 --- a/src/app/authorisation.service.ts +++ b/src/app/authorisation.service.ts @@ -129,7 +129,7 @@ export class AuthorisationService { var server: SshAuthzServer; auths = <SshAuthzServer[]>resp; try { - localauths = JSON.parse(localStorage.getItem('localcomputesites')) + localauths = JSON.parse(localStorage.getItem('localauthservers')) } catch { localauths = [] } diff --git a/src/app/computesites.service.ts b/src/app/computesites.service.ts index c8a78959c73f9fc8a35b0b2d4decf03abdcfff64..2a1e9954a22018e739faaeb792fb71b6451e9602 100644 --- a/src/app/computesites.service.ts +++ b/src/app/computesites.service.ts @@ -82,9 +82,8 @@ export class ComputesitesService { private getStrudelAppsCmd(identity: Identity): Observable<Strudelapp[]> { if (identity.site.appCatalogCmd != null) { - console.log('requesting apps from',identity.site.name,Date.now()); return (this.tesService.runCommand(identity,identity.site.appCatalogCmd) as Observable<Strudelapp[]>) - .pipe(tap((_) => console.log('got apps',Date.now())), catchError(this.handleError('getStrudelApps', <Strudelapp[]>[]))) + .pipe(catchError(this.handleError('getStrudelApps', <Strudelapp[]>[]))) } return of([] as Strudelapp[]) }