File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,13 +69,13 @@ export class QLDebugConfigurationProvider
6969 ) : Promise < DebugConfiguration | null > {
7070 const qlConfiguration = debugConfiguration as QLDebugConfiguration ;
7171 if ( qlConfiguration . query === undefined ) {
72- await showAndLogErrorMessage (
72+ void showAndLogErrorMessage (
7373 "No query was specified in the debug configuration." ,
7474 ) ;
7575 return null ;
7676 }
7777 if ( qlConfiguration . database === undefined ) {
78- await showAndLogErrorMessage (
78+ void showAndLogErrorMessage (
7979 "No database was specified in the debug configuration." ,
8080 ) ;
8181 return null ;
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ export async function compileAndRunQueryAgainstDatabaseCore(
316316 logger : Logger ,
317317) : Promise < CoreQueryResults > {
318318 if ( extensionPacks !== undefined && extensionPacks . length > 0 ) {
319- await showAndLogWarningMessage (
319+ void showAndLogWarningMessage (
320320 "Legacy query server does not support extension packs." ,
321321 ) ;
322322 }
You can’t perform that action at this time.
0 commit comments