MAPREDUCE-6442. Stack trace is missing when error occurs in client protocol provider's constructor Contributed by Chang Li.
This commit is contained in:
parent
bcc85e3bab
commit
9b685773ec
@ -584,6 +584,9 @@ Release 2.7.2 - UNRELEASED
|
|||||||
MAPREDUCE-6439. AM may fail instead of retrying if RM shuts down during the
|
MAPREDUCE-6439. AM may fail instead of retrying if RM shuts down during the
|
||||||
allocate call. (Anubhav Dhoot via kasha)
|
allocate call. (Anubhav Dhoot via kasha)
|
||||||
|
|
||||||
|
MAPREDUCE-6442. Stack trace is missing when error occurs in client protocol
|
||||||
|
provider's constructor (Chang Li via ozawa)
|
||||||
|
|
||||||
Release 2.7.1 - 2015-07-06
|
Release 2.7.1 - 2015-07-06
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -111,7 +111,7 @@ private void initialize(InetSocketAddress jobTrackAddr, Configuration conf)
|
|||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
LOG.info("Failed to use " + provider.getClass().getName()
|
LOG.info("Failed to use " + provider.getClass().getName()
|
||||||
+ " due to error: " + e.getMessage());
|
+ " due to error: ", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user