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

remove some unnecessary console.log statements

parent 6a1c5009
No related branches found
No related tags found
4 merge requests!106if stat fails, display the error instead of immediately refreshing...,!99Dev,!91Test,!90Dev
Pipeline #15964 passed
...@@ -34,14 +34,12 @@ export class JobsService { ...@@ -34,14 +34,12 @@ export class JobsService {
public refreshJobs() { public refreshJobs() {
if (this.id !== undefined && this.id !== null) { if (this.id !== undefined && this.id !== null) {
var query$: Observable<Job[]>; var query$: Observable<Job[]>;
console.log('refreshJobs');
query$ = this.tes.runCommand(this.id, this.id.site.statcmd) query$ = this.tes.runCommand(this.id, this.id.site.statcmd)
//query$.subscribe((qjobs) => this.jobs$.next(<Job[]>qjobs), //query$.subscribe((qjobs) => this.jobs$.next(<Job[]>qjobs),
// (error) => this.getJobsError(error,this.id)) // (error) => this.getJobsError(error,this.id))
query$.pipe( query$.pipe(
repeatWhen(x => x.pipe(delay(5000))), repeatWhen(x => x.pipe(delay(5000))),
catchError((err) => this.getJobsErrorHandler(err, this.id.site.statcmd, this.id)), catchError((err) => this.getJobsErrorHandler(err, this.id.site.statcmd, this.id)),
tap((_) => console.log('in refreshJobs' + Date())),
).subscribe((qjobs) => this.jobs$.next(<Job[]>qjobs), ).subscribe((qjobs) => this.jobs$.next(<Job[]>qjobs),
(error) => this.getJobsError(error,this.id)) (error) => this.getJobsError(error,this.id))
} }
......
...@@ -105,8 +105,8 @@ public getCachetIncidents(identity: Identity) { ...@@ -105,8 +105,8 @@ public getCachetIncidents(identity: Identity) {
let headers = new HttpHeaders(); let headers = new HttpHeaders();
let options = { headers: headers, withCredentials: false}; let options = { headers: headers, withCredentials: false};
let params = new URLSearchParams(); let params = new URLSearchParams();
if (identity.site.cacheturis === undefined || identity.site.cacheturis.length == 0) { if (identity.site.cacheturis === undefined || identity.site.cacheturis.length == 0) {
console.log('no uris');
identity.systemalerts.next([]); identity.systemalerts.next([]);
return return
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment