mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
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
4 lines
231 B
Bash
Executable file
4 lines
231 B
Bash
Executable file
#!/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 $@
|