Skip to content

Commit

Permalink
Fix QA nits
Browse files Browse the repository at this point in the history
  • Loading branch information
joshelser committed Jan 24, 2020
1 parent de2c78e commit 7555d72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ AccessControlList buildAdminAcl(Configuration conf) {
* {@link #addUnprivilegedServlet(String, String, Class)} instead of this method.
* This method will add a servlet which any authenticated user can access.
*
* @deprecated Use {@link #addUnprivilegedServet(String, String, Class)} or
* @deprecated Use {@link #addUnprivilegedServlet(String, String, Class)} or
* {@link #addPrivilegedServlet(String, String, Class)} instead of this
* method which does not state outwardly what kind of authz rules will
* be applied to this servlet.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,12 @@ private Pair<Integer,String> getLogsPage() throws Exception {
}

private Pair<Integer,String> getMasterDumpPage() throws Exception {
URL url = new URL (getInfoServerHostAndPort() + "/dump");
URL url = new URL(getInfoServerHostAndPort() + "/dump");
return getUrlContent(url);
}

private Pair<Integer,String> getStacksPage() throws Exception {
URL url = new URL (getInfoServerHostAndPort() + "/stacks");
URL url = new URL(getInfoServerHostAndPort() + "/stacks");
return getUrlContent(url);
}

Expand Down

0 comments on commit 7555d72

Please sign in to comment.