Skip to content

Commit

Permalink
Merge branch 'fix/uptime-handle-null-duration' of https://github.com/…
Browse files Browse the repository at this point in the history
…dominiqueclarke/kibana into fix/uptime-handle-null-duration
  • Loading branch information
dominiqueclarke committed Feb 13, 2022
2 parents 65b9825 + 179ee4c commit 35eb9c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class ServiceAPIClient {
);
if (locMonitors.length > 0) {
promises.push(
rxjsFrom(callServiceEndpoint(locMonitors, `${url}-test`)).pipe(
rxjsFrom(callServiceEndpoint(locMonitors, url)).pipe(
tap((result) => {
this.logger.debug(result.data);
this.logger.debug(
Expand Down

0 comments on commit 35eb9c4

Please sign in to comment.