This is an automated email from the ASF dual-hosted git repository.
cgivre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git
The following commit(s) were added to refs/heads/master by this push:
new 5af7990 Fix typo: "Failed to open ~open~ input file" (#2258)
5af7990 is described below
commit 5af79900031018a870a2db361dda98cb3d68d21e
Author: Leonhard Markert <[email protected]>
AuthorDate: Fri Jun 11 12:10:13 2021 +0000
Fix typo: "Failed to open ~open~ input file" (#2258)
---
.../src/main/java/org/apache/drill/exec/store/xml/XMLBatchReader.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/contrib/format-xml/src/main/java/org/apache/drill/exec/store/xml/XMLBatchReader.java
b/contrib/format-xml/src/main/java/org/apache/drill/exec/store/xml/XMLBatchReader.java
index 83f549f..1ed50b8 100644
---
a/contrib/format-xml/src/main/java/org/apache/drill/exec/store/xml/XMLBatchReader.java
+++
b/contrib/format-xml/src/main/java/org/apache/drill/exec/store/xml/XMLBatchReader.java
@@ -91,7 +91,7 @@ public class XMLBatchReader implements
ManagedReader<FileSchemaNegotiator> {
} catch (Exception e) {
throw UserException
.dataReadError(e)
- .message("Failed to open open input file: {}",
split.getPath().toString())
+ .message("Failed to open input file: {}", split.getPath().toString())
.addContext(errorContext)
.addContext(e.getMessage())
.build(logger);