Skip to content

Commit b5c96ca

Browse files
committed
fix: custom validation should use debounced validation
1 parent c01968c commit b5c96ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/languageserver/handlers/requestHandlers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class RequestHandlers {
5252
*/
5353
this.connection.onRequest(RevalidateRequest.type, async (uri: string) => {
5454
const document = this.yamlSettings.documents.get(uri);
55-
await this.validationHandler.validateTextDocument(document);
55+
await this.validationHandler.validate(document);
5656
});
5757

5858
/**

0 commit comments

Comments
 (0)