Skip to content

Commit

Permalink
MDBF-135 Use exact match for builderName comparison in has S3
Browse files Browse the repository at this point in the history
Otherwise aarch64-ubuntu-2004 will run S3 tests because the string is in aarch64-ubuntu-2004-debug
  • Loading branch information
RazvanLiviuVarzaru committed Dec 11, 2024
1 parent 5292148 commit 42bbf70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ def hasS3(props):
builderName = str(props.getProperty("buildername"))

for b in builders_s3_mtr:
if builderName in b:
if builderName == b:
return True
return False

Expand Down

0 comments on commit 42bbf70

Please sign in to comment.