From 00213cdc32b0cc7e416c1aa1f67f0e3ffe00c054 Mon Sep 17 00:00:00 2001 From: Gonzalo Avalos Ribas Date: Mon, 9 Dec 2024 13:22:50 -0300 Subject: [PATCH 1/2] Remove comments --- .../src/execution/executeIntegration.ts | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/packages/integration-sdk-runtime/src/execution/executeIntegration.ts b/packages/integration-sdk-runtime/src/execution/executeIntegration.ts index 48e7fc0a..fd4a3462 100644 --- a/packages/integration-sdk-runtime/src/execution/executeIntegration.ts +++ b/packages/integration-sdk-runtime/src/execution/executeIntegration.ts @@ -238,20 +238,6 @@ export async function executeWithContext< validateStepStartStates(config.integrationSteps, configStepStartStates); - logger.info( - { - integrationSteps: config.integrationSteps, - configStepStartStates: configStepStartStates, - configStepStartStatesForSSOUsers: - configStepStartStates[DEBUG_STEP_ID], - instanceDisabledSources: context.instance?.disabledSources, - stepStartStatesInConfig: stepStartStatesInConfig, - stepStartStatesInConfigForSSOUsers: - stepStartStatesInConfig?.[DEBUG_STEP_ID], - }, - 'Calculating step start states', - ); - const stepStartStates = getIngestionSourceStepStartStates({ integrationSteps: config.integrationSteps, configStepStartStates, @@ -260,14 +246,6 @@ export async function executeWithContext< ), }); - logger.info( - { - stepStartStates: stepStartStates, - stepStartStatesForSSOUsers: stepStartStates[DEBUG_STEP_ID], - }, - `Step start states calculated`, - ); - if (shouldPublishDiskUsageMetric) { diskUsagePublishInterval = createDiskUsagePublishInterval(); } From 3bbeb17cc1c6888e3c2daaf967dd553526d336cc Mon Sep 17 00:00:00 2001 From: Gonzalo Avalos Ribas Date: Mon, 9 Dec 2024 13:24:33 -0300 Subject: [PATCH 2/2] Remove comments --- .../integration-sdk-runtime/src/execution/executeIntegration.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/integration-sdk-runtime/src/execution/executeIntegration.ts b/packages/integration-sdk-runtime/src/execution/executeIntegration.ts index fd4a3462..c26837c4 100644 --- a/packages/integration-sdk-runtime/src/execution/executeIntegration.ts +++ b/packages/integration-sdk-runtime/src/execution/executeIntegration.ts @@ -69,7 +69,6 @@ type ExecuteWithContextOptions = Pick< >; const THIRTY_SECONDS_STORAGE_INTERVAL_MS = 60000 / 2; -const DEBUG_STEP_ID = 'fetch-sso-users'; /** * Starts execution of an integration instance generated from local environment