We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8503aa3 commit aa6fef9Copy full SHA for aa6fef9
core/src/main/scala/org/apache/spark/deploy/security/HBaseDelegationTokenProvider.scala
@@ -70,6 +70,10 @@ private[security] class HBaseDelegationTokenProvider
70
getMethod("create", classOf[Configuration])
71
confCreate.invoke(null, conf).asInstanceOf[Configuration]
72
} catch {
73
+ case e: ClassNotFoundException =>
74
+ logWarning(s"You are attempting to use the ${getClass.getCanonicalName}, but" +
75
+ s" the HBase libraries are not provided.")
76
+ conf
77
case NonFatal(e) =>
78
logWarning("Fail to invoke HBaseConfiguration", e)
79
conf
0 commit comments