Patch GCP secret manager integration edge-case

This commit is contained in:
Tuan Dang
2023-08-30 21:04:39 +01:00
parent 219e3884e7
commit f21eb3b7c8
2 changed files with 5 additions and 10 deletions

View File

@@ -317,8 +317,8 @@ const syncSecretsGCPSecretManager = async ({
}
interface GCPSMListSecretsRes {
secrets: GCPSecret[];
totalSize: number;
secrets?: GCPSecret[];
totalSize?: number;
nextPageToken?: string;
}
@@ -345,7 +345,9 @@ const syncSecretsGCPSecretManager = async ({
}
)).data;
gcpSecrets = gcpSecrets.concat(res.secrets);
if (res.secrets) {
gcpSecrets = gcpSecrets.concat(res.secrets);
}
if (!res.nextPageToken) {
hasMorePages = false;

View File

@@ -7,7 +7,6 @@ import {
} from "@app/hooks/api";
export default function GCPSecretManagerOAuth2CallbackPage() {
console.log("GCPSecretManagerOAuth2CallbackPage");
const router = useRouter();
const { mutateAsync } = useAuthorizeIntegration();
@@ -17,10 +16,6 @@ export default function GCPSecretManagerOAuth2CallbackPage() {
(async () => {
try {
// validate state
console.log("gcp oauth2 callback page");
console.log("gcp oauth2 callback page code: ", code);
console.log("gcp oauth2 callback page state: ", state);
if (state !== localStorage.getItem("latestCSRFToken")) return;
localStorage.removeItem("latestCSRFToken");
@@ -30,8 +25,6 @@ export default function GCPSecretManagerOAuth2CallbackPage() {
integration: "gcp-secret-manager"
});
console.log("integrationAuth: ", integrationAuth);
router.push(`/integrations/gcp-secret-manager/create?integrationAuthId=${integrationAuth._id}`);
} catch (err) {
console.error(err);