This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new c1dcee7e46 Added location information to BulkImporter error message (#4722) c1dcee7e46 is described below commit c1dcee7e461885121d76bc2804d350a90d1d9f7c Author: Dave Marion <dlmar...@apache.org> AuthorDate: Tue Jul 2 14:31:31 2024 -0400 Added location information to BulkImporter error message (#4722) --- .../src/main/java/org/apache/accumulo/server/client/BulkImporter.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/base/src/main/java/org/apache/accumulo/server/client/BulkImporter.java b/server/base/src/main/java/org/apache/accumulo/server/client/BulkImporter.java index 683ffaa058..4de81d7759 100644 --- a/server/base/src/main/java/org/apache/accumulo/server/client/BulkImporter.java +++ b/server/base/src/main/java/org/apache/accumulo/server/client/BulkImporter.java @@ -612,7 +612,8 @@ public class BulkImporter { } catch (ThriftSecurityException e) { throw new AccumuloSecurityException(e.user, e.code, e); } catch (Exception t) { - log.error("Encountered unknown exception in assignMapFiles.", t); + log.error("Encountered unknown exception in assignMapFiles asking {} to bulk import.", + location, t); throw new AccumuloException(t); } }