Skip to content

Commit

Permalink
Fix minor typos (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
qianl15 authored Aug 2, 2024
1 parent 182d517 commit 887a48a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/httpServer/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ async checkPortAvailability(port: number, host: string): Promise<void> {
await koaNext();
};
router.get(HealthUrl, healthHandler);
dbosExec.logger.debug(`DBOS Server Registered Healthz POST ${HealthUrl}`);
dbosExec.logger.debug(`DBOS Server Registered Healthz GET ${HealthUrl}`);
}

/**
Expand Down Expand Up @@ -167,7 +167,7 @@ async checkPortAvailability(port: number, host: string): Promise<void> {
await koaNext();
};
router.get(PerfUrl, perfHandler);
dbosExec.logger.debug(`DBOS Server Registered Healthz POST ${HealthUrl}`);
dbosExec.logger.debug(`DBOS Server Registered Perf GET ${HealthUrl}`);
}

/**
Expand Down

0 comments on commit 887a48a

Please sign in to comment.