From 1e0d1144635042b8e533785d38d5e3fd6c99c47c Mon Sep 17 00:00:00 2001 From: NikTripathi <87809732+NikTripathi@users.noreply.github.com> Date: Fri, 17 Jun 2022 15:47:11 +0530 Subject: [PATCH] vCenter Datatype Exception (#5358) --- .script/dataConnectorValidator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.script/dataConnectorValidator.ts b/.script/dataConnectorValidator.ts index 78b7c6d7b7..e923964eb9 100644 --- a/.script/dataConnectorValidator.ts +++ b/.script/dataConnectorValidator.ts @@ -74,7 +74,7 @@ function getConnectorCategory(dataTypes : any, instructionSteps:[]) { return ConnectorCategory.AzureFunction; } - else if(dataTypes[0].name.includes("meraki") && JSON.stringify(instructionSteps).includes("\"type\":\"InstallAgent\"")) + else if((dataTypes[0].name.includes("meraki") || dataTypes[0].name.includes("vcenter")) && JSON.stringify(instructionSteps).includes("\"type\":\"InstallAgent\"")) { return ConnectorCategory.SysLog; }