feat: Add timeout handling to MCP server requests - Add 5-minute time…#27
Merged
coleam00 merged 1 commit intocoleam00:mainfrom Mar 9, 2025
Merged
Conversation
…out, proper error handling, and improved logging
Owner
|
This was very needed, thank you! |
HillviewCap
pushed a commit
to HillviewCap/Archon
that referenced
this pull request
Apr 1, 2025
…out, proper error handling, and improved logging (coleam00#27) Co-authored-by: Takshit Mathur <takshitmathur@gmail.com>
tazmon95
pushed a commit
to tazmon95/Archon
that referenced
this pull request
Aug 16, 2025
…dcoded-ports fix: Remove hardcoded ports and require environment variables
coleam00
pushed a commit
that referenced
this pull request
Apr 7, 2026
* Add git worktree support for isolated parallel development Enable each conversation to work in an isolated git worktree via new /worktree command (create/list/remove). Worktree path takes priority over cwd in orchestrator's directory resolution chain. - Add worktree_path column to conversations (migration 003) - Add /worktree create <branch> | list | remove commands - Update orchestrator: worktree_path > cwd > default_cwd - Add 7 tests for worktree command coverage Co-Authored-By: Claude <noreply@anthropic.com> * Fix worktree safety: prevent orphaned worktrees and respect uncommitted changes - Check if conversation already has a worktree before creating new one - Remove --force flag from worktree remove to let git warn about uncommitted changes - Document git as first-class citizen in CLAUDE.md - Add test for already-using-worktree rejection Co-Authored-By: Claude <noreply@anthropic.com> * Add --force flag to /worktree remove for uncommitted changes - Add optional --force flag to discard uncommitted changes - Provide friendly error message when worktree has uncommitted changes - Update help text to document the --force option - Let git's natural guardrails surface errors first, then offer escape hatch Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
Tyone88
pushed a commit
to Tyone88/Archon
that referenced
this pull request
Apr 16, 2026
* Add git worktree support for isolated parallel development Enable each conversation to work in an isolated git worktree via new /worktree command (create/list/remove). Worktree path takes priority over cwd in orchestrator's directory resolution chain. - Add worktree_path column to conversations (migration 003) - Add /worktree create <branch> | list | remove commands - Update orchestrator: worktree_path > cwd > default_cwd - Add 7 tests for worktree command coverage Co-Authored-By: Claude <noreply@anthropic.com> * Fix worktree safety: prevent orphaned worktrees and respect uncommitted changes - Check if conversation already has a worktree before creating new one - Remove --force flag from worktree remove to let git warn about uncommitted changes - Document git as first-class citizen in CLAUDE.md - Add test for already-using-worktree rejection Co-Authored-By: Claude <noreply@anthropic.com> * Add --force flag to /worktree remove for uncommitted changes - Add optional --force flag to discard uncommitted changes - Provide friendly error message when worktree has uncommitted changes - Update help text to document the --force option - Let git's natural guardrails surface errors first, then offer escape hatch Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
This was referenced Apr 20, 2026
ibuildthings-instrumentl
added a commit
to instrumentl/Archon
that referenced
this pull request
Apr 20, 2026
fix(deps): bump lodash to >=4.18.0 (Dependabot coleam00#26, coleam00#27)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add timeout handling to MCP server requests
Changes Made
Why These Changes?
Timeout Configuration:
Error Handling:
requests.exceptions.TimeoutLogging Improvements:
Technical Details
The main changes were made in
mcp/mcp_server.pyin the_make_requestfunction:timeout=300parameter torequests.postImpact
These changes will: