You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error:
The notebook failed while reading the storage account key after list_keys, because the code assumed one response shape and tried attribute-style access only.
Why it was failing:
1.Runtime dependency resolution changed over time (these notebooks install prerelease SDKs).
2.The same list_keys call can come back in different valid shapes depending on SDK/runtime combination.
3.Old logic handled only one shape, so it failed when the alternate shape appeared.
What we fixed:
1.Added compatibility handling for both response shapes (model-style and mapping-style).
2Normalized key extraction so value is read correctly in either case.
3.Kept behavior unchanged: still uses the first returned storage key.
Net result:
No functional workflow change, only robustness fix to prevent environment/version-related breakage.
CopilotAI
changed the title
[WIP] Fix failing GitHub Actions job 'build'
Fix managed-identity notebook build failure from list_keys API shape change
May 22, 2026
Error:
The notebook failed while reading the storage account key after list_keys, because the code assumed one response shape and tried attribute-style access only.
Why it was failing:
1.Runtime dependency resolution changed over time (these notebooks install prerelease SDKs).
2.The same list_keys call can come back in different valid shapes depending on SDK/runtime combination.
3.Old logic handled only one shape, so it failed when the alternate shape appeared.
What we fixed:
1.Added compatibility handling for both response shapes (model-style and mapping-style).
2Normalized key extraction so value is read correctly in either case.
3.Kept behavior unchanged: still uses the first returned storage key.
Net result:
No functional workflow change, only robustness fix to prevent environment/version-related breakage.
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
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.
Error:
The notebook failed while reading the storage account key after list_keys, because the code assumed one response shape and tried attribute-style access only.
Why it was failing:
1.Runtime dependency resolution changed over time (these notebooks install prerelease SDKs).
2.The same list_keys call can come back in different valid shapes depending on SDK/runtime combination.
3.Old logic handled only one shape, so it failed when the alternate shape appeared.
What we fixed:
1.Added compatibility handling for both response shapes (model-style and mapping-style).
2Normalized key extraction so value is read correctly in either case.
3.Kept behavior unchanged: still uses the first returned storage key.
Net result:
No functional workflow change, only robustness fix to prevent environment/version-related breakage.