We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e3f208 commit 27b605fCopy full SHA for 27b605f
python/neutron-understack/neutron_understack/ironic.py
@@ -1,3 +1,5 @@
1
+import logging
2
+
3
from keystoneauth1 import loading as ks_loading
4
from openstack import connection
5
from openstack.baremetal.baremetal_service import BaremetalService
@@ -6,10 +8,14 @@
6
8
7
9
IRONIC_SESSION = None
10
11
+LOG = logging.getLogger(__name__)
12
13
14
class IronicClient:
15
def __init__(self):
16
+ LOG.debug("creating ironic client")
17
self.irclient = self._get_ironic_client()
18
+ LOG.debug("created ironic client")
19
20
def _get_session(self, group: str) -> ks_loading.session.Session:
21
auth = ks_loading.load_auth_from_conf_options(cfg.CONF, group)
0 commit comments