From 326b1c1ed1da62ed353d9409b0e32af6e0015c1f Mon Sep 17 00:00:00 2001 From: andsel Date: Mon, 25 May 2020 14:32:35 +0200 Subject: [PATCH] Pass FEATURE_FLAG as Docker environment variable Some QA tests reads the FEATURE_FLAG environment variable, for example to test PQ functionality. This PR passthrough the environement variable inside the Docker instance. Fixes #11970 --- ci/docker_integration_tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/docker_integration_tests.sh b/ci/docker_integration_tests.sh index 0eb78569a..6264f94d5 100755 --- a/ci/docker_integration_tests.sh +++ b/ci/docker_integration_tests.sh @@ -1,2 +1,4 @@ #!/bin/bash +# we may pass "persistent_queues" to FEATURE_FLAG to enable PQ in the integration tests +export DOCKER_ENV_OPTS="${DOCKER_ENV_OPTS} -e FEATURE_FLAG" ci/docker_run.sh logstash-integration-tests ci/integration_tests.sh $@