From 373d012fa790337d085708f3067d70c5770cb450 Mon Sep 17 00:00:00 2001 From: Antonia Avramova Date: Fri, 2 Jun 2023 11:51:36 +0300 Subject: [PATCH] Correct the json value of the LogFile of the BootstrapConfiguration structure Signed-off-by: Antonia Avramova --- integration/util/registry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/util/registry.go b/integration/util/registry.go index 5a4f2432..b0a0ef17 100644 --- a/integration/util/registry.go +++ b/integration/util/registry.go @@ -35,7 +35,7 @@ type Resource struct { // BootstrapConfiguration holds the required configuration to suite bootstrapping to connect and // where to receive post bootstrapping files and script. type BootstrapConfiguration struct { - LogFile string `json:"logFile"` + LogFile string `json:"logBootstrapFile"` PostBootstrapFile string `json:"postBootstrapFile"` PostBootstrapScript []string `json:"postBootstrapScript"` CaCert string `json:"caCert"`