Skip to content

Commit

Permalink
Correct bad references
Browse files Browse the repository at this point in the history
  • Loading branch information
sajith committed Oct 30, 2023
1 parent 2d89e7f commit 72b8eb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fabrictestbed_extensions/fablib/fablib.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,13 +789,13 @@ def __init__(
self.bastion_private_ipv6_addr = "0:0:0:0:0:0"

if self.credmgr_host is None:
self.credmgr_host = DEFAULT_FABRIC_CREDMGR_HOST
self.credmgr_host = self.DEFAULT_FABRIC_CREDMGR_HOST

if self.orchestrator_host is None:
self.orchestrator_host = DEFAULT_FABRIC_ORCHESTRATOR_HOST
self.orchestrator_host = self.DEFAULT_FABRIC_ORCHESTRATOR_HOST

if self.bastion_public_addr is None:
self.bastion_public_addr = DEFAULT_FABRIC_BASTION_HOST
self.bastion_public_addr = self.DEFAULT_FABRIC_BASTION_HOST

self._validate_configuration()

Expand Down

0 comments on commit 72b8eb8

Please sign in to comment.