forked from LBRYCommunity/lbry-sdk
fix typo
This commit is contained in:
parent
48c9e9f3cc
commit
eba0c9be34
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class SearchIndex:
|
|||
index_version = await self.get_index_version()
|
||||
if index_version != self.VERSION:
|
||||
self.logger.error("es search index has an incompatible version: %s vs %s", index_version, self.VERSION)
|
||||
raise IndexVersionMismatch(f"{index_version} vs {self.VERSION}")
|
||||
raise IndexVersionMismatch(index_version, self.VERSION)
|
||||
return acked
|
||||
|
||||
def stop(self):
|
||||
|
|
Loading…
Reference in a new issue