Skip to content
Snippets Groups Projects
Commit 786cd63f authored by Chris Hines's avatar Chris Hines
Browse files

debugging statements when things get stuck pre-login

parent 975185bd
No related branches found
No related tags found
4 merge requests!106if stat fails, display the error instead of immediately refreshing...,!99Dev,!61Test,!59Dev
Pipeline #10412 passed
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
</mat-list-item> </mat-list-item>
</mat-list> </mat-list>
<div style="border-style: solid none none none ; border-width: 1px; border-color: var(--panel-border-color); box-sizing: border-box"> <div style="border-style: solid none none none ; border-width: 1px; border-color: var(--panel-border-color); box-sizing: border-box">
<div *ngIf="computeSitesService.appidentities | async as obs; else loading">
<mat-accordion style="width: 100%" [displayMode]="'flat'"> <mat-accordion style="width: 100%" [displayMode]="'flat'">
<div *ngFor="let id of (computeSitesService.appidentities | async)" style="border-style: none none solid none; border-width: 1px; border-color: var(--panel-border-color) "> <div *ngFor="let id of (computeSitesService.appidentities | async)" style="border-style: none none solid none; border-width: 1px; border-color: var(--panel-border-color) ">
<!--<mat-expansion-panel (afterExpand)="selectId(id)" (closed)="selectId(id)" style="width: 100%">--> <!--<mat-expansion-panel (afterExpand)="selectId(id)" (closed)="selectId(id)" style="width: 100%">-->
...@@ -42,12 +43,14 @@ ...@@ -42,12 +43,14 @@
<!--<div style="width: 100%; border-bottom: 1px solid var(--panel-border-color);"></div>--> <!--<div style="width: 100%; border-bottom: 1px solid var(--panel-border-color);"></div>-->
</div> </div>
</mat-accordion> </mat-accordion>
</div><ng-template #loading>Loading...</ng-template>
</div> </div>
</nav> </nav>
</div> </div>
<div fxFlex></div> <div fxFlex></div>
</mat-sidenav> </mat-sidenav>
<mat-sidenav-content> <mat-sidenav-content>
<div *ngIf="computeSitesService.appidentities | async as obs; else loading">
<div fxLayout="column" fxLayoutAlign="start none" style="height: 100%"> <div fxLayout="column" fxLayoutAlign="start none" style="height: 100%">
<div *ngIf="!(settingsService.useMenu$ | async)"> <div *ngIf="!(settingsService.useMenu$ | async)">
<mat-divider inset=true></mat-divider> <mat-divider inset=true></mat-divider>
...@@ -81,6 +84,7 @@ ...@@ -81,6 +84,7 @@
</div> </div>
</div><ng-template #loading>Determining which sites you are logged into already ...</ng-template>
</mat-sidenav-content> </mat-sidenav-content>
</mat-sidenav-container> </mat-sidenav-container>
</div> </div>
...@@ -73,6 +73,9 @@ export class LauncherComponent implements OnInit { ...@@ -73,6 +73,9 @@ export class LauncherComponent implements OnInit {
this.app$ = new BehaviorSubject<Strudelapp>(null); this.app$ = new BehaviorSubject<Strudelapp>(null);
this.identity$ = new BehaviorSubject<Identity>(null); this.identity$ = new BehaviorSubject<Identity>(null);
this.identity = null; this.identity = null;
this.computeSitesService.identities.subscribe((o) => console.log('identities change',o,Date()));
this.computeSitesService.appidentities.subscribe((o) => console.log('appidentities change',o,Date()));
this.authService.sshAuthzServers.subscribe(o => console.log('authzservers change',o,Date()));
//this.quotas = new BehaviorSubject<any[]>([]); //this.quotas = new BehaviorSubject<any[]>([]);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment