Skip to content

Commit 9a17861

Browse files
larskssmoser
authored andcommitted
openstack: fix log message copy/paste typo in _get_url_settings
There was a copy/paste error in _get_url_settings such that the error message would complain about max wait when in fact it was talking about retries.
1 parent 6edf0c7 commit 9a17861

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloudinit/sources/DataSourceOpenStack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _get_url_settings(self):
6060
try:
6161
retries = int(self.ds_cfg.get("retries", retries))
6262
except Exception:
63-
util.logexc(LOG, "Failed to get max wait. using %s", retries)
63+
util.logexc(LOG, "Failed to get retries. using %s", retries)
6464

6565
return (max_wait, timeout, retries)
6666

0 commit comments

Comments
 (0)