浏览代码

HDFS-14047. [libhdfs++] Fix hdfsGetLastExceptionRootCause bug in test_libhdfs_threaded.c
(Contributed by Antoli Shein via Daniel Templeton)

Change-Id: Ia5546fd5f8270f285c373b9023a9bd9835059845

Daniel Templeton 6 年之前
父节点
当前提交
349168c4b3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfs/exception.c

+ 1 - 1
hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfs/exception.c

@@ -130,7 +130,7 @@ static char* getExceptionUtilString(JNIEnv *env, jthrowable exc, char *methodNam
     jstring jStr = NULL;
     char *excString = NULL;
     jthr = invokeMethod(env, &jVal, STATIC, NULL,
-        "org/apache/commons/lang/exception/ExceptionUtils",
+        "org/apache/commons/lang3/exception/ExceptionUtils",
         methodName, "(Ljava/lang/Throwable;)Ljava/lang/String;", exc);
     if (jthr) {
         destroyLocalReference(env, jthr);