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.
2 parents 01382f5 + d9f577d commit 8e888f1Copy full SHA for 8e888f1
core/config/yaml/LocalPlatformClient.ts
@@ -97,7 +97,12 @@ export class LocalPlatformClient implements PlatformClient {
97
return [];
98
}
99
100
- const results = await this.client.resolveFQSNs(fqsns, this.orgScopeId);
+ let results: (SecretResult | undefined)[] = [];
101
+ try {
102
+ results = await this.client.resolveFQSNs(fqsns, this.orgScopeId);
103
+ } catch (e) {
104
+ console.error("Error getting secrets from control plane", e);
105
+ }
106
107
// For any secret that isn't found, look in .env files, then process.env
108
for (let i = 0; i < results.length; i++) {
0 commit comments