Skip to content

Commit 8a6b65b

Browse files
committed
HIVE-28965: tez.DagUtils: Failed to add credential supplier, ClassNotFoundException: org.apache.hadoop.hive.kafka.KafkaDagCredentialSupplier
1 parent d90574c commit 8a6b65b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ private static List<DagCredentialSupplier> defaultCredentialSuppliers() {
313313
Class<? extends DagCredentialSupplier> c = Class.forName(s).asSubclass(DagCredentialSupplier.class);
314314
dagSuppliers.add(c.getConstructor().newInstance());
315315
} catch (ReflectiveOperationException e) {
316-
LOG.error("Failed to add credential supplier", e);
316+
LOG.warn("Failed to add credential supplier: {}", s);
317317
}
318318
}
319319
return dagSuppliers;

0 commit comments

Comments
 (0)