From b7157015b3e3d66b4b96b44a98665fcf56a80ab9 Mon Sep 17 00:00:00 2001 From: Georgi Boyvalenkov Date: Thu, 25 May 2023 15:01:18 +0300 Subject: [PATCH] [#231] Incorrect flags in c2e integration test setup (#232) - flag names fixes Signed-off-by: Georgi Boyvalenkov --- integration/c2e-setup/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/c2e-setup/main.go b/integration/c2e-setup/main.go index 508229b8..e7c3ad8b 100644 --- a/integration/c2e-setup/main.go +++ b/integration/c2e-setup/main.go @@ -412,8 +412,8 @@ func writeConfigBootstrapFile(path string) error { func writeConfigLdtFile(path string) error { type ldtConnectorConfig struct { - CaCert string `json:"ldtCaCert"` - LogFile string `json:"logLdtFile"` + CaCert string `json:"caCert"` + LogFile string `json:"logFile"` Address string `json:"address"` TenantID string `json:"tenantId"` DeviceID string `json:"deviceId"`