From 798857689c1ba9de312ce9a5e3b48675b85449af Mon Sep 17 00:00:00 2001 From: Brad Lhotsky Date: Fri, 26 Jul 2024 12:43:30 -0700 Subject: [PATCH] Skip hidden indices from the alias-manager --- scripts/es-alias-manager.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/es-alias-manager.pl b/scripts/es-alias-manager.pl index 1be1017..de1cc25 100755 --- a/scripts/es-alias-manager.pl +++ b/scripts/es-alias-manager.pl @@ -129,6 +129,8 @@ # Loop through the indices and take appropriate actions; foreach my $index (sort keys %{ $indices }) { + next if $index =~ /^[._]/; + debug("$index being evaluated"); my %current = map { $_ => 1 } grep { !/^\./ }