code-graph-context 3.0.6 → 3.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/mcp/constants.js
CHANGED
|
@@ -213,8 +213,8 @@ export const PARSING = {
|
|
|
213
213
|
streamingThreshold: 100,
|
|
214
214
|
/** Default number of files per chunk */
|
|
215
215
|
defaultChunkSize: 50,
|
|
216
|
-
/** Worker timeout in milliseconds (
|
|
217
|
-
workerTimeoutMs: 60 * 60 * 1000,
|
|
216
|
+
/** Worker timeout in milliseconds (default: 8 hours, configurable via WORKER_TIMEOUT_HOURS) */
|
|
217
|
+
workerTimeoutMs: (Number(process.env.WORKER_TIMEOUT_HOURS) || 8) * 60 * 60 * 1000,
|
|
218
218
|
};
|
|
219
219
|
// Job Management
|
|
220
220
|
export const JOBS = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-graph-context",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
4
4
|
"description": "MCP server that builds code graphs to provide rich context to LLMs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/andrew-hernandez-paragon/code-graph-context#readme",
|