From 159ba9ccd3f3ef3a526a7c35a63a4a93b1001416 Mon Sep 17 00:00:00 2001 From: JeraldJF Date: Mon, 27 Jan 2025 12:13:54 +0530 Subject: [PATCH] fix: #OBS-I452 : connector flatten spec fix --- api-service/src/configs/IngestionConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-service/src/configs/IngestionConfig.ts b/api-service/src/configs/IngestionConfig.ts index 52d71a85..cfc4d1cf 100644 --- a/api-service/src/configs/IngestionConfig.ts +++ b/api-service/src/configs/IngestionConfig.ts @@ -84,12 +84,12 @@ export const rawIngestionSpecDefaults = { "flattenSpec": [ { "type": "path", - "expr": "$.obsrv_meta.source.entry_source", + "expr": "$.obsrv_meta.source.connector", "name": "obsrv.meta.source.connector" }, { "type": "path", - "expr": "$.obsrv_meta.source.id", + "expr": "$.obsrv_meta.source.connectorInstance", "name": "obsrv.meta.source.id" } ],