Revert SWE Destroyer port defaults commit#280
Merged
danielmillerp merged 1 commit intomainfrom Mar 3, 2026
Merged
Conversation
…ploy_handlers.py" This reverts commit 89097c0.
RoxyFarhad
approved these changes
Mar 3, 2026
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.
Summary
ports.pyinenvironment_variables.pyanddeploy_handlers.pyTest plan
environment_variables.pyhas original default valuesdeploy_handlers.pyuses hardcoded"8000"port🤖 Generated with Claude Code
Greptile Summary
This PR reverts commit 89097c0 which introduced imports from a non-existent module (
agentex.lib.constants.ports). That commit would have causedImportErrorat runtime. The revert restores the original inline default values in both files.environment_variables.py:TEMPORAL_ADDRESS = "localhost:7233",AGENTEX_BASE_URL = "http://localhost:5003",ACP_PORT = 8000,HEALTH_CHECK_PORT = 80"8000"port indeploy_handlers.pyuvicorn commandsACP_SERVER_PORTfromagentex.lib.constants.ports(module does not exist in repository)Confidence Score: 5/5
ports.py). The restored inline defaults exactly match the pre-89097c0 state. No behavioral changes beyond fixing the broken import.Important Files Changed
ports.pyconstants and restores original inline defaults. Minor extra blank line at top of file.ACP_SERVER_PORTconstant and restores hardcoded"8000"port string in uvicorn commands.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["environment_variables.py"] -->|"reverted import from"| B["constants/ports.py (non-existent)"] C["deploy_handlers.py"] -->|"reverted import from"| B A -->|"restored inline defaults"| D["TEMPORAL_ADDRESS = localhost:7233\nAGENTEX_BASE_URL = http://localhost:5003\nACP_PORT = 8000\nHEALTH_CHECK_PORT = 80"] C -->|"restored hardcoded port"| E["uvicorn --port 8000"] style B fill:#f96,stroke:#333,color:#000 style D fill:#6f6,stroke:#333,color:#000 style E fill:#6f6,stroke:#333,color:#000Last reviewed commit: fdda7a5