diff --git a/.eslintrc.json b/.eslintrc.json index 7b35263d..0ecc4536 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,6 +12,7 @@ "plugin:@typescript-eslint/recommended" ], "rules": { + "@typescript-eslint/ban-ts-comment": 0, "@typescript-eslint/explicit-module-boundary-types": 0, "@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-shadow": "error", diff --git a/src/commands/app/debug-proxy.ts b/src/commands/app/debug-proxy.ts index 24316d84..666f0254 100644 --- a/src/commands/app/debug-proxy.ts +++ b/src/commands/app/debug-proxy.ts @@ -57,6 +57,9 @@ export default class DebugProxy extends Kommand { }; async runSafe() { + // @ts-ignore Disable ping pong since when debugging Kuzzle might not be responding + clearInterval(this.sdk.sdk.protocol.pingIntervalId); + const nodeVersionResponse = (await this.sdk.query({ controller: "debug", action: "nodeVersion",