From 4685e2f03ed12ef5a7978b222b1b7a1d559621aa Mon Sep 17 00:00:00 2001 From: Mashhur Date: Thu, 3 Jul 2025 16:31:30 -0700 Subject: [PATCH 1/2] Removes secure_integration tag since it is internally handled --- .ci/logstash-run.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.ci/logstash-run.sh b/.ci/logstash-run.sh index 5ce754fa..3e31fdd6 100755 --- a/.ci/logstash-run.sh +++ b/.ci/logstash-run.sh @@ -26,11 +26,8 @@ wait_for_es() { if [[ "$INTEGRATION" != "true" ]]; then bundle exec rspec --format=documentation spec/filters --tag ~integration --tag ~secure_integration else - if [[ "$SECURE_INTEGRATION" == "true" ]]; then - extra_tag_args="--tag secure_integration" - else - extra_tag_args="--tag ~secure_integration --tag integration" - fi + # SECURE_INTEGRATION is handled inside the specs + extra_tag_args="--tag integration" wait_for_es bundle exec rspec --format=documentation $extra_tag_args --tag update_tests:painless --tag es_version:$ELASTIC_STACK_VERSION spec/filters/integration From b899986b39844efe7d424c135de8e37225318f54 Mon Sep 17 00:00:00 2001 From: Mashhur <99575341+mashhurs@users.noreply.github.com> Date: Mon, 7 Jul 2025 09:45:59 -0700 Subject: [PATCH 2/2] Update .ci/logstash-run.sh Remove `secure_integration ` with unit tests as well. Co-authored-by: Cas Donoghue --- .ci/logstash-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/logstash-run.sh b/.ci/logstash-run.sh index 3e31fdd6..16da128e 100755 --- a/.ci/logstash-run.sh +++ b/.ci/logstash-run.sh @@ -24,7 +24,7 @@ wait_for_es() { } if [[ "$INTEGRATION" != "true" ]]; then - bundle exec rspec --format=documentation spec/filters --tag ~integration --tag ~secure_integration + bundle exec rspec --format=documentation spec/filters --tag ~integration else # SECURE_INTEGRATION is handled inside the specs extra_tag_args="--tag integration"