Repository: incubator-hawq Updated Branches: refs/heads/master 583ef22e0 -> 815e674ae
HAWQ-839. Fix libyarn coredump when failover to standby RM Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/815e674a Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/815e674a Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/815e674a Branch: refs/heads/master Commit: 815e674aeaeb91dc396625390c38744303453332 Parents: 583ef22 Author: Wen Lin <[email protected]> Authored: Tue Jun 21 09:41:36 2016 +0800 Committer: Wen Lin <[email protected]> Committed: Tue Jun 21 09:41:36 2016 +0800 ---------------------------------------------------------------------- depends/libyarn/src/common/ExceptionInternal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/815e674a/depends/libyarn/src/common/ExceptionInternal.h ---------------------------------------------------------------------- diff --git a/depends/libyarn/src/common/ExceptionInternal.h b/depends/libyarn/src/common/ExceptionInternal.h index 930ee71..819a9f3 100644 --- a/depends/libyarn/src/common/ExceptionInternal.h +++ b/depends/libyarn/src/common/ExceptionInternal.h @@ -218,7 +218,7 @@ void ThrowException(bool nested, const char * f, int l, throw THROWABLE(buffer.c_str(), SkipPathPrefix(f), l, Yarn::Internal::PrintStack(1, STACK_DEPTH).c_str()); } else { - std::throw_with_nested( + Yarn::throw_with_nested( THROWABLE(buffer.c_str(), SkipPathPrefix(f), l, Yarn::Internal::PrintStack(1, STACK_DEPTH).c_str())); }
