From c59ab7be354235fdd2ac03026b224a25701b387b Mon Sep 17 00:00:00 2001 From: donoghuc Date: Wed, 20 Nov 2024 08:18:10 -0800 Subject: [PATCH] Replace removed yaml module In https://github.com/elastic/logstash/pull/16586 the module include was removed. This causes failures in the script when the module is referenced. This commit re-enables the include for the yaml module. --- docker/data/logstash/env2yaml/env2yaml.go | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/data/logstash/env2yaml/env2yaml.go b/docker/data/logstash/env2yaml/env2yaml.go index e0680957a1e..b2e93ad16f5 100644 --- a/docker/data/logstash/env2yaml/env2yaml.go +++ b/docker/data/logstash/env2yaml/env2yaml.go @@ -17,6 +17,7 @@ package main import ( "errors" "fmt" + "gopkg.in/yaml.v2" "io/ioutil" "log" "os"