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
This commit is contained in:
andsel 2020-05-25 14:32:35 +02:00 committed by Andrea Selva
parent 709602d9c0
commit 326b1c1ed1

View file

@ -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 $@