The azure.ai.finetune extension uses -e as a short flag for --project-endpoint. This conflicts with azd's global -e for --environment, which caused #7271.
Files to change
extensions/azure.ai.finetune/internal/cmd/init.go:149 - Flags
extensions/azure.ai.finetune/internal/cmd/operations.go:44 - PersistentFlags
Change
Remove the -e short flag for --project-endpoint (change StringVarP to StringVar). We can't migrate to -p because it's already used by --project-resource-id in init.go. The long form --project-endpoint still works.
This is a breaking change for anyone using -e with this extension, but -e is reserved for azd's --environment flag.
Blocked by: #7307
The
azure.ai.finetuneextension uses-eas a short flag for--project-endpoint. This conflicts with azd's global-efor--environment, which caused #7271.Files to change
extensions/azure.ai.finetune/internal/cmd/init.go:149- Flagsextensions/azure.ai.finetune/internal/cmd/operations.go:44- PersistentFlagsChange
Remove the
-eshort flag for--project-endpoint(changeStringVarPtoStringVar). We can't migrate to-pbecause it's already used by--project-resource-idininit.go. The long form--project-endpointstill works.This is a breaking change for anyone using
-ewith this extension, but-eis reserved for azd's--environmentflag.Blocked by: #7307