This commit is contained in:
Vladyslav Matsiiako
2023-08-22 15:10:30 -07:00

View File

@@ -28,7 +28,7 @@ syncSecretsToThirdPartyServices.process(async (job: Job) => {
// for each workspace integration, sync/push secrets
// to that integration
for await (const integration of integrations) {
for (const integration of integrations) {
// get workspace, environment (shared) secrets
const secrets = await BotService.getSecrets({
workspaceId: integration.workspace,
@@ -46,7 +46,7 @@ syncSecretsToThirdPartyServices.process(async (job: Job) => {
});
// sync secrets to integration
return await syncSecrets({
await syncSecrets({
integration,
integrationAuth,
secrets,