Skip to content

Commit

Permalink
fix self.os_version error
Browse files Browse the repository at this point in the history
  • Loading branch information
Aydin-ab committed Dec 20, 2024
1 parent ff4215c commit 6be8050
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def _is_efficient_filtering_enabled(self) -> bool:
ef_enabled = False
else :
self._os_version = self._get_opensearch_version()
major, minor, patch = os_version.split(".")
major, minor, patch = self.os_version.split(".")
ef_enabled = int(major) >= 2 and int(minor) >= 9
return ef_enabled

Expand Down

0 comments on commit 6be8050

Please sign in to comment.