Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions changelog.d/unreleased/2665.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
category: fixed
issues:
- 2665
- 2680
- 2683
affected:
- src/CodeIndex/Indexer/Symbols/SymbolExtractor.cs
- src/CodeIndex/Cli/IndexCommandRunner.cs
- src/CodeIndex/Cli/CommandErrorCodes.cs
- tests/CodeIndex.Tests/IndexCommandRunnerTests.cs
---

## English

- **Full index refresh now fails with a bounded extraction-stall diagnostic (#2665, #2680, #2683)** — full scans detect when extraction stops making progress and report the active file/phase instead of waiting indefinitely on a large source file.

## 日本語

- **フルインデックス更新が抽出停止時に有界な診断で失敗するようになりました (#2665, #2680, #2683)** — フルスキャンで抽出の進捗が止まった場合、巨大なソースファイルで待ち続ける代わりに、処理中のファイルとフェーズを報告します。
3 changes: 3 additions & 0 deletions src/CodeIndex/Cli/CommandErrorCodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,7 @@ internal static class CommandErrorCodes

/// <summary>The user interrupted the command with Ctrl-C / SIGINT.</summary>
public const string Interrupted = "E012_INTERRUPTED";

/// <summary>Index extraction made no forward progress within the bounded stall timeout.</summary>
public const string IndexExtractionStalled = "E013_INDEX_EXTRACTION_STALLED";
}
Loading
Loading