Skip to content
Snippets Groups Projects
Commit b6928e3f authored by Daniel Nemergut's avatar Daniel Nemergut
Browse files

Removing the old polling method that now lives in the constructor

parent 77f935cd
No related branches found
No related tags found
2 merge requests!1431pick up recent patches to 2.8.2,!1413Single capability request call
Pipeline #10760 passed
...@@ -517,20 +517,6 @@ export class ActiveCapabilityRequestsComponent implements OnInit, OnDestroy { ...@@ -517,20 +517,6 @@ export class ActiveCapabilityRequestsComponent implements OnInit, OnDestroy {
}); });
} }
private getActiveCapabilityRequests$(): Observable<any> {
return this.pollingDataUpdaterService
.getDataPoller$(
this.capabilityRequestService.getActiveCapabilityRequestsUrl(
this.capabilityName,
this.filters,
),
)
.pipe(
takeUntil(this.ngUnsubscribe),
repeatWhen(() => this.ngUnsubscribe),
);
}
// Returns the execution status name based on the current execution state for displaying, sorting, and filtering // Returns the execution status name based on the current execution state for displaying, sorting, and filtering
public getExecutionStatusName(request: any): string { public getExecutionStatusName(request: any): string {
let statusName = ""; let statusName = "";
......
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