We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8786432 commit 1f87957Copy full SHA for 1f87957
1 file changed
src/nypl_py_utils/classes/oauth2_api_client.py
@@ -40,7 +40,7 @@ def get(self, request_path, **kwargs):
40
if retries < 3:
41
self.logger.warning(
42
f'Retrying get request due to empty response from\
43
- Oauth2 Client. Retry #{retries}')
+ Oauth2 Client using path: {request_path}. Retry #{retries}')
44
sleep(pow(2, retries - 1))
45
kwargs['retries'] = retries
46
resp = self.get(request_path, **kwargs)
0 commit comments