Skip to content

Commit

Permalink
Merge pull request #61 from scality/improvement/archive-cores
Browse files Browse the repository at this point in the history
archive-core: FILTERS_PATTERNS -> IGNORE_FILTERS
  • Loading branch information
liaud authored Mar 2, 2023
2 parents f0f2b1a + e79f103 commit df82857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archive-cores/archive-cores.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ is_expected_crash()
local bt_full="$1"
local bin="$2"

for match in $FILTER_PATTERNS; do
for match in $IGNORE_FILTERS; do
if grep -q "$match" "$bt_full"; then
echo "Known and expected crash of $bin: $match, skipping"
return 0
Expand Down

0 comments on commit df82857

Please sign in to comment.