Skip to content
Closed
Changes from all 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 @@ -70,6 +70,10 @@ private[security] class HBaseDelegationTokenProvider
getMethod("create", classOf[Configuration])
confCreate.invoke(null, conf).asInstanceOf[Configuration]
} catch {
case e: ClassNotFoundException =>
logWarning(s"You are attempting to use the ${getClass.getCanonicalName}, but" +
s" the HBase libraries are not provided.")
conf
case NonFatal(e) =>
logWarning("Fail to invoke HBaseConfiguration", e)
conf
Expand Down