From 9dc812dd4b90008575e747e9a821feddd2c4dc49 Mon Sep 17 00:00:00 2001 From: Abhi <43648792+abhipatel12@users.noreply.github.com> Date: Mon, 14 Jul 2025 13:23:51 -0400 Subject: fix(checkpoint): Prevent silent failure and enable for non-Git projects (#4144) --- packages/core/src/config/config.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'packages/core/src/config/config.ts') 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(); } -- cgit v1.2.3