8000 fix(hubble): logging error message refering to jinahub uri by numb3r3 · Pull Request #2945 · jina-ai/serve · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(hubble): logging error message refering to jinahub uri #2945

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jina/hubble/hubio.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def pull(self) -> str:
else:
raise ValueError(f'{self.args.uri} is not a valid scheme')
except Exception as e:
self.logger.error(f'{e!r}')
self.logger.error(f'Error while pulling {self.args.uri}: \n{e!r}')
raise e
finally:
# delete downloaded zip package if existed
Expand Down
0