We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78a46e6 + a100d5d commit 2ab0891Copy full SHA for 2ab0891
backend/name-server/src/database/query/project.query.ts
@@ -37,6 +37,6 @@ export class ProjectQuery implements ProjectQueryInterface {
37
throw new Error(`No client IP found for domain: ${domain}`);
38
}
39
40
- return rows[0].ip;
+ return rows.ip;
41
42
backend/name-server/src/server/service/health-check.service.ts
@@ -57,7 +57,7 @@ export class HealthCheckService {
57
};
58
59
60
- private handleResponse(res: http.IncomingMessage): void { // http.IncomingMessage 사용
+ private handleResponse(res: http.IncomingMessage): void {
61
let data = '';
62
const timeoutId = setTimeout(() => {
63
this.proxyServerHealthy = false;
0 commit comments