Skip to content

Commit

Permalink
Fix: qdevice: config "tls" should accept value "required" (bsc#1227649)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasyang2022 committed Jul 16, 2024
1 parent 5a64266 commit c73da28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crmsh/qdevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ def config_and_start_qdevice(self):
Wrap function to collect functions to config and start qdevice
"""
QDevice.remove_qdevice_db()
if self.tls == "on":
if self.tls == "on" or self.tls == 'required':
with logger_utils.status_long("Qdevice certification process"):
self.certificate_process_on_init()
self.adjust_sbd_watchdog_timeout_with_qdevice()
Expand Down

0 comments on commit c73da28

Please sign in to comment.