We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6b3531 commit ad9bdf1Copy full SHA for ad9bdf1
packages/fx-core/src/component/configManager/lifecycle.ts
@@ -101,11 +101,18 @@ export function resolveString(
101
resolved.push(envVar);
102
newVal = newVal.replace(matches[0], envVal);
103
}
104
- } else {
+ } else if (envVar.includes("AZURE") || envVar.includes("OPENAI")) {
105
if (envVal) {
106
107
108
109
+ } else {
110
+ if (!envVal) {
111
+ unresolved.push(envVar);
112
113
+ resolved.push(envVar);
114
+ newVal = newVal.replace(matches[0], envVal);
115
+ }
116
117
matches = placeHolderReg.exec(val);
118
0 commit comments