diff options
| author | Abhi <[email protected]> | 2025-07-14 13:23:51 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-14 17:23:51 +0000 |
| commit | 9dc812dd4b90008575e747e9a821feddd2c4dc49 (patch) | |
| tree | 23c293f7f6611efd6a38d705d700e240c42f11b8 /packages/core/src/config/config.ts | |
| parent | 2f1d6234def2c8c77c2afebd9f83a2dcf3d6aacd (diff) | |
fix(checkpoint): Prevent silent failure and enable for non-Git projects (#4144)
Diffstat (limited to 'packages/core/src/config/config.ts')
| -rw-r--r-- | packages/core/src/config/config.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 7d982385..1b101815 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -259,11 +259,7 @@ export class Config { // Initialize centralized FileDiscoveryService this.getFileService(); if (this.getCheckpointingEnabled()) { - try { - await this.getGitService(); - } catch { - // For now swallow the error, later log it. - } + await this.getGitService(); } this.toolRegistry = await this.createToolRegistry(); } |
