fix(deps): pin geny-executor>=2.0.1#785
Merged
Merged
Conversation
…ypeOrchestrator zero-arg crash) Hotfix for prod ``새 세션 만들기`` failure: TypeError: SubagentTypeOrchestrator.__init__() missing 1 required positional argument: 'registry' Root cause is in geny-executor 2.0.0 (Stage 12 strategy restore path constructs the orchestrator zero-arg before the registry can be bound). Fixed in geny-executor 2.0.1 (PR CocoRoF/geny-executor#203, daf2e1f). This PR bumps the Geny pin in both requirements.txt and pyproject.toml so the buggy 2.0.0 can't be resolved on rebuild. Deploy procedure (after PyPI release of 2.0.1): cd /home/hrjang/docker_web/Geny sudo git pull origin main sudo docker compose -f docker-compose.prod.yml build --no-cache backend sudo docker compose -f docker-compose.prod.yml up -d Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Hotfix
Pins the buggy 2.0.0 out. 2.0.1 (executor PR #203, `daf2e1f`) fixes the `SubagentTypeOrchestrator.init() missing 1 required positional argument: 'registry'` crash that hits `/api/sessions` creation flow.
Two files updated:
Deploy (after PyPI release of 2.0.1)
```bash
cd /home/hrjang/docker_web/Geny
sudo git pull origin main
sudo docker compose -f docker-compose.prod.yml build --no-cache backend
sudo docker compose -f docker-compose.prod.yml up -d
```