Skip to content
Open
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 @@ -313,7 +313,7 @@ private static List<DagCredentialSupplier> defaultCredentialSuppliers() {
Class<? extends DagCredentialSupplier> c = Class.forName(s).asSubclass(DagCredentialSupplier.class);
dagSuppliers.add(c.getConstructor().newInstance());
} catch (ReflectiveOperationException e) {
LOG.error("Failed to add credential supplier", e);
LOG.warn("Failed to add credential supplier: {}", s);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's ok, but would be great to init those CredentialSuppliers only when used

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure, would look into this.

}
}
return dagSuppliers;
Expand Down
Loading