Skip to content

Commit

Permalink
Merge pull request #1764 from Infisical/fix-integration-sync-import-p…
Browse files Browse the repository at this point in the history
…riority

Update priority of integration sync secrets for imported secrets
  • Loading branch information
maidul98 authored Apr 30, 2024
2 parents 306709c + 17fa72b commit 07845ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/services/secret/secret-queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ export const secretQueueFactory = ({
});

// add the imported secrets to the current folder secrets
content = { ...content, ...importedSecrets };
content = { ...importedSecrets, ...content };
}
}

Expand Down

0 comments on commit 07845ad

Please sign in to comment.