Skip to content

Commit

Permalink
Merge branch 'next-release'
Browse files Browse the repository at this point in the history
  • Loading branch information
bb-Ricardo committed Oct 22, 2024
2 parents a1276d6 + 897e77c commit 258bc0e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ It will also create a inventory of all components of a system.
R.I.P. IPMI
Version: 1.8.0 (2024-09-13)
Version: 1.8.1 (2024-10-22)
mandatory arguments:
-H HOST, --host HOST define the host to request. To change the port just
Expand Down
4 changes: 2 additions & 2 deletions check_redfish.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
R.I.P. IPMI
"""

__version__ = "1.8.0"
__version_date__ = "2024-09-13"
__version__ = "1.8.1"
__version_date__ = "2024-10-22"
__author__ = "Ricardo Bartels <[email protected]>"
__description__ = "Check Redfish Plugin"
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion cr_module/classes/redfish.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def is_session_locked(self):
def write_session_lock(self):
if self.cli_args.sessionlock is True and \
self.session_file_path is not None and \
os.path.exists(self.session_file_lock):
os.path.exists(self.session_file_path):

try:
with open(self.session_file_lock, 'w') as handle:
Expand Down

0 comments on commit 258bc0e

Please sign in to comment.