diff --git a/src/helpers/stream-helpers.ts b/src/helpers/stream-helpers.ts index cb3f5217..c797d28c 100644 --- a/src/helpers/stream-helpers.ts +++ b/src/helpers/stream-helpers.ts @@ -23,7 +23,6 @@ export function getMountParamsForStream(mountParameters: JsonValue, streamParame return { cli: { ...cli, - ...parsedMountParameters, 'subscriptions:stream': parsedStreamParameters, // eslint-disable-line @typescript-eslint/naming-convention ...getDisabledSyncConfig(), }, @@ -35,7 +34,6 @@ export function getMountParamsForStream(mountParameters: JsonValue, streamParame return { gnmi: { ...gnmi, - ...parsedMountParameters, 'subscriptions:stream': parsedStreamParameters, // eslint-disable-line @typescript-eslint/naming-convention ...getDisabledSyncConfig(), }, @@ -46,7 +44,6 @@ export function getMountParamsForStream(mountParameters: JsonValue, streamParame return { netconf: { ...netconf, - ...parsedMountParameters, 'subscriptions:stream': parsedStreamParameters, // eslint-disable-line @typescript-eslint/naming-convention ...getDisabledSyncConfig(), },