Skip to content
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

BUGFIX Updating AnalyticJobGeneratorHadoop2.java to resolve the Job listing Conflict #302

Merged
merged 3 commits into from
Nov 7, 2017
Merged
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ private void updateAuthToken() {
*/
private JsonNode readJsonNode(URL url)
throws IOException, AuthenticationException {
HttpURLConnection conn = _authenticatedURL.openConnection(url, _token);
return _objectMapper.readTree(conn.getInputStream());
// HttpURLConnection conn = _authenticatedURL.openConnection(url, _token);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would this work fine for Kerberos enabled cluster?

Copy link
Contributor Author

@shahrukhkhan489 shahrukhkhan489 Oct 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes it works. Its being used on a Kerberos enabled Production Cluster

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you can just remove this line.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

its done

return _objectMapper.readTree(url.openStream());
}

/**
Expand Down