Merge "Yadro tatlin_client: Fix bad message formatting"

This commit is contained in:
Zuul 2023-03-20 17:10:59 +00:00 committed by Gerrit Code Review
commit 748604dc15
1 changed files with 1 additions and 1 deletions

View File

@ -366,7 +366,7 @@ class TatlinClientCommon:
result, status = self._access_api(tatlin_api.POOLS)
except TatlinAPIException as exp:
message = _('Unable to get pool id for %s due to %s' %
pool_name, exp.message)
(pool_name, exp.message))
LOG.error(message)
raise exception.VolumeBackendAPIException(message=message)