File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ export class Server {
218218 console . error ( "Connection string validation failed with error: " , error ) ;
219219 throw new Error (
220220 "Connection string validation failed with error: " +
221- ( error instanceof Error ? error . message : String ( error ) )
221+ ( error instanceof Error ? error . message : String ( error ) )
222222 ) ;
223223 }
224224 }
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ export abstract class AtlasToolBase extends ToolBase {
1010 args : ToolArgs < typeof this . argsShape >
1111 ) : Promise < CallToolResult > | CallToolResult {
1212
13- // Error Handling for expected atlas-local errors go here
13+ // Error Handling for expected atlas-local errors go here
1414
1515 // For other types of errors, use the default error handling from the base class
1616 return super . handleError ( error , args ) ;
1717 }
18- }
18+ }
Original file line number Diff line number Diff line change 1- export const AtlasLocalTools = [ ] ;
1+ export const AtlasLocalTools = [ ] ;
You can’t perform that action at this time.
0 commit comments