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 d90574c commit 8a6b65bCopy full SHA for 8a6b65b
ql/src/java/org/apache/hadoop/hive/ql/exec/tez/DagUtils.java
@@ -313,7 +313,7 @@ private static List<DagCredentialSupplier> defaultCredentialSuppliers() {
313
Class<? extends DagCredentialSupplier> c = Class.forName(s).asSubclass(DagCredentialSupplier.class);
314
dagSuppliers.add(c.getConstructor().newInstance());
315
} catch (ReflectiveOperationException e) {
316
- LOG.error("Failed to add credential supplier", e);
+ LOG.warn("Failed to add credential supplier: {}", s);
317
}
318
319
return dagSuppliers;
0 commit comments