diff --git a/CHANGELOG.md b/CHANGELOG.md index d259fa5..854040a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ and this project adheres to ## [Unreleased] +## 2.3.3 - 2024-08-22 + +- Enable PODS step. + +## 2.3.2 - 2024-08-13 + +- Prevent nodes with missing metadata from being created + ## 2.3.1 - 2024-07-03 ### Changed diff --git a/src/getStepStartStates.ts b/src/getStepStartStates.ts index aba2370..080b763 100644 --- a/src/getStepStartStates.ts +++ b/src/getStepStartStates.ts @@ -147,8 +147,12 @@ export default async function getStepStartStates( }, [IntegrationSteps.PODS]: { disabled: !( - instance.accountId == '0c51143d-9728-4f42-8442-4b52be5e8a74' || - instance.accountId == 'j1dev' + // INT-11589 + ( + instance.accountId == 'ff5cf2a1-4fb2-4f56-929e-6e79d195da8d' || + instance.accountId == '0c51143d-9728-4f42-8442-4b52be5e8a74' || + instance.accountId == 'j1dev' + ) ), // INT-10704 }, };