Skip to content

Commit 29135d0

Browse files
authored
Catch retry errors, i.e. when a metadata service fails (#918)
1 parent 127b666 commit 29135d0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

paperqa/clients/client_models.py

+7
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
field_validator,
1515
model_validator,
1616
)
17+
from tenacity import RetryError
1718

1819
from paperqa.types import DocDetails
1920

@@ -116,6 +117,12 @@ async def query(self, query: dict) -> DocDetails | None:
116117
f" {client_query.doi if isinstance(client_query, DOIQuery) else client_query.title} in"
117118
f" {self.__class__.__name__}."
118119
)
120+
except RetryError:
121+
logger.warning(
122+
"Metadata service is down for"
123+
f" {client_query.doi if isinstance(client_query, DOIQuery) else client_query.title} in"
124+
f" {self.__class__.__name__}."
125+
)
119126
except TimeoutError:
120127
logger.warning(
121128
f"Request to {self.__class__.__name__} for"

0 commit comments

Comments
 (0)