Skip to content

Commit d574340

Browse files
committed
ice: Fix handling of deleted files with % in their names
1 parent ff96d49 commit d574340

File tree

1 file changed

+1
-1
lines changed
  • ice/src/main/java/com/altinity/ice/cli/internal/cmd

1 file changed

+1
-1
lines changed

ice/src/main/java/com/altinity/ice/cli/internal/cmd/Insert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ private static List<DataFile> processFile(
368368
try {
369369
metadata = Metadata.read(inputFile);
370370
} catch (NoSuchKeyException e) { // S3FileInput
371-
throw new NotFoundException(inputFile.location(), e);
371+
throw new NotFoundException(e, "%s", inputFile.location());
372372
}
373373
} catch (NotFoundException e) {
374374
if (options.ignoreNotFound) {

0 commit comments

Comments
 (0)