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 {
218
218
console . error ( "Connection string validation failed with error: " , error ) ;
219
219
throw new Error (
220
220
"Connection string validation failed with error: " +
221
- ( error instanceof Error ? error . message : String ( error ) )
221
+ ( error instanceof Error ? error . message : String ( error ) )
222
222
) ;
223
223
}
224
224
}
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ export abstract class AtlasToolBase extends ToolBase {
10
10
args : ToolArgs < typeof this . argsShape >
11
11
) : Promise < CallToolResult > | CallToolResult {
12
12
13
- // Error Handling for expected atlas-local errors go here
13
+ // Error Handling for expected atlas-local errors go here
14
14
15
15
// For other types of errors, use the default error handling from the base class
16
16
return super . handleError ( error , args ) ;
17
17
}
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