Skip to content

Commit 11cdf04

Browse files
Merge branch 'main' into bkellam/redis_tls
2 parents a96cdcf + a8c5568 commit 11cdf04

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
### Changed
1414
- `filterByFilepaths` in the MCP `search_code` tool now accepts regular expressions matched against the full file path, instead of treating values as escaped literals. [#1008](https://github.com/sourcebot-dev/sourcebot/pull/1008)
1515

16+
### Fixed
17+
- Connection sync job failures now log the actual error reason instead of a generic message. [#1012](https://github.com/sourcebot-dev/sourcebot/pull/1012)
18+
1619
## [4.15.7] - 2026-03-16
1720

1821
### Added

packages/backend/src/connectionManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ export class ConnectionManager {
378378
this.promClient.activeConnectionSyncJobs.dec({ connection: connection.name });
379379
this.promClient.connectionSyncJobFailTotal.inc({ connection: connection.name });
380380

381-
jobLogger.error(`Failed job ${job.id} for connection ${connection.name} (id: ${connection.id}). Failing job.`);
381+
jobLogger.error(`Failed job ${job.id} for connection ${connection.name} (id: ${connection.id}). Reason: ${job.failedReason}`);
382382

383383
const config = connection.config as unknown as ConnectionConfig;
384384
captureEvent('backend_connection_sync_job_failed', {

0 commit comments

Comments
 (0)