We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6745b2a commit 5f70d56Copy full SHA for 5f70d56
lambdas/functions/control-plane/src/github/auth.ts
@@ -49,11 +49,7 @@ async function loadAppCredentials(): Promise<GitHubAppCredential[]> {
49
throw new Error(`GitHub App parameter count mismatch: ${idParams.length} IDs vs ${keyParams.length} keys`);
50
}
51
// Batch fetch all SSM parameters in a single call to reduce API calls
52
- const allParamNames = [
53
- ...idParams,
54
- ...keyParams,
55
- ...installationIdParams.filter((p) => p.length > 0),
56
- ];
+ const allParamNames = [...idParams, ...keyParams, ...installationIdParams.filter((p) => p.length > 0)];
57
const params = await getParameters(allParamNames);
58
59
const credentials: GitHubAppCredential[] = [];
0 commit comments