Fix vault key managed fixed broken by a typo

Fix the typo introduced by I8c354937c2c39a63f50c150b3e858826b6a78fe0 ,
which broke functionality of vault key manager.

Change-Id: Icd2f1fceac5d33a7ae9c2d6e6722ef634177beb1
This commit is contained in:
Dmitry Novikov 2024-08-13 15:38:03 +07:00 committed by Takashi Kajinami
parent a01bb73d5f
commit 72fd3c1ae9

View File

@ -203,7 +203,7 @@ class VaultKeyManager(key_manager.KeyManager):
try:
resp = method(resource, headers=headers, json=json,
verify=self._verfy_server, timeout=self._timeout)
verify=self._verify_server, timeout=self._timeout)
except requests.exceptions.Timeout as ex:
raise exception.KeyManagerError(str(ex))
except requests.exceptions.ConnectionError as ex: