-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HADOOP-18387. Fix incorrect placeholder in hadoop-common #4679
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -224,7 +224,7 @@ protected void serviceStart() throws Exception { | |
| bindingDiagnosticDetails(), | ||
| dumpRegistryRobustly(true)); | ||
|
|
||
| LOG.error(" Failure {}", e, e); | ||
| LOG.error(" Failure {}", e.getMessage(), e); | ||
|
||
| LOG.error(message); | ||
|
|
||
| // TODO: this is something temporary to deal with the problem | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs to move the fs.geturi to a param, not string concat
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the help reviewing the code, I will fix it.