From 6baf0f01b770bbb07b53fedc8cd9fe219ceeb7bb Mon Sep 17 00:00:00 2001 From: Hrishabh Tiwari <74908943+Hrishabh17@users.noreply.github.com> Date: Wed, 15 May 2024 15:00:33 +0530 Subject: [PATCH] Fix active db (#570) * Add active state for Tenant * Set newly created vendors active state to true --- apps/netsuite/connector.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/netsuite/connector.py b/apps/netsuite/connector.py index 2984d853..8f2cc020 100644 --- a/apps/netsuite/connector.py +++ b/apps/netsuite/connector.py @@ -752,7 +752,8 @@ def create_destination_attribute(self, attribute: str, name: str, destination_id 'destination_id': destination_id, 'detail': { 'email': email - } + }, + 'active': True }, self.workspace_id) return created_attribute