Skip to content

Commit

Permalink
Merge pull request redpanda-data#18424 from michael-redpanda/CORE-293…
Browse files Browse the repository at this point in the history
…1-Fix-FIPS-version

CORE-2931 Fix wrong version in is_fips_capable
  • Loading branch information
piyushredpanda authored May 14, 2024
2 parents 5c4e9d6 + 6126727 commit b827ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rptest/services/redpanda.py
Original file line number Diff line number Diff line change
Expand Up @@ -3835,7 +3835,7 @@ def write_node_conf_file(self,

def is_fips_capable(node) -> bool:
cur_ver = self._installer.installed_version(node)
return cur_ver == RedpandaInstaller.HEAD or cur_ver >= (24, 1, 1)
return cur_ver == RedpandaInstaller.HEAD or cur_ver >= (24, 2, 1)

if in_fips_environment() and is_fips_capable(node):
self.logger.info(
Expand Down

0 comments on commit b827ac7

Please sign in to comment.