Skip to content

Commit 44c11d1

Browse files
JanKoehnleinroboquat
authored andcommitted
minor code cleanup
1 parent 56874b6 commit 44c11d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/server/ee/src/monitoring-endpoint-ee.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class MonitoringEndpointsAppEE extends WorkspaceHealthMonitoring {
4545
}
4646
}
4747

48-
async function checkWorkspaceHealth(ctx: TraceContext, workspaceHealthMonitoring: WorkspaceHealthMonitoring, extra: boolean = false, ) {
48+
async function checkWorkspaceHealth(ctx: TraceContext, workspaceHealthMonitoring: WorkspaceHealthMonitoring, extra: boolean = false) {
4949
const span = TraceContext.startSpan("checkWorkspaceHealth", ctx);
5050
const result = await workspaceHealthMonitoring.probeAllRunningWorkspaces({ span });
5151
const numUnhealthy = result.map(r => r.ok ? 0 : 1).reduce((acc: number, cur: number) => acc + cur as number, 0);

components/server/ee/src/workspace/gitpod-server-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ export class GitpodServerEEImpl extends GitpodServerImpl {
720720
}
721721

722722
// TODO(gpl) This is not part of our API interface, nor can I find any clients. Remove or re-surrect?
723-
// async getLicenseInfo(ctx: TraceContext, ): Promise<GetLicenseInfoResult> {
723+
// async getLicenseInfo(ctx: TraceContext): Promise<GetLicenseInfoResult> {
724724
// const user = this.checkAndBlockUser("getLicenseInfo");
725725

726726
// const { key } = await this.licenseKeySource.getKey();

0 commit comments

Comments
 (0)