fix: support ALIBABA_CLOUD_REGION_ID env var as fallback for region_id#92
Draft
fix: support ALIBABA_CLOUD_REGION_ID env var as fallback for region_id#92
Conversation
… Config Agent-Logs-Url: https://github.com/Serverless-Devs/agentrun-sdk-python/sessions/8ff9ee10-db3b-46f6-b71e-d98fea33a4f7 Co-authored-by: OhYee <13498329+OhYee@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix logic for retrieving region_id in Config method
fix: support ALIBABA_CLOUD_REGION_ID env var as fallback for region_id
Apr 22, 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.
Configonly fell back toAGENTRUN_REGION/FC_REGIONforregion_id, breaking theALIBABA_CLOUD_*convention followed by every other credential parameter. Users who setALIBABA_CLOUD_REGION_ID(standard Alibaba Cloud SDK env var) receivedcn-hangzhouinstead of their configured region.Changes
agentrun/utils/config.py— addALIBABA_CLOUD_REGION_IDto theregion_idfallback chain; update docstring to document all supported env varsAGENTRUN_REGION→FC_REGION→ALIBABA_CLOUD_REGION_ID→"cn-hangzhou"tests/unittests/utils/test_config_extended.py— add tests forALIBABA_CLOUD_REGION_IDresolution and priority ordering