Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
mjnagel committed May 2, 2024
1 parent cf93180 commit 568018a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pepr/operator/controllers/monitoring/service-monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ export async function serviceMonitor(pkg: UDSPackage, namespace: string) {
await K8s(Prometheus.ServiceMonitor).Delete(sm);
}
} catch (err) {
throw new Error(`Failed to process ServiceMonitors for ${pkgName}, cause: ${JSON.stringify(err)}`);
throw new Error(
`Failed to process ServiceMonitors for ${pkgName}, cause: ${JSON.stringify(err)}`,
);
}

// Return the list of monitor names
Expand Down

0 comments on commit 568018a

Please sign in to comment.