Skip to content

Commit

Permalink
eCRF setup exporter: do not bail out when failing to write sketch bgi…
Browse files Browse the repository at this point in the history
…mage
  • Loading branch information
rkrenn committed Mar 1, 2024
1 parent b0b8451 commit 91f232a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,12 @@ public void printRows(InputFieldOutVO inputField) throws Throwable {
values[widthColumnIndex] = (inputField.getWidth() != null ? Long.toString(inputField.getWidth()) : null);
values[heightColumnIndex] = (inputField.getHeight() != null ? Long.toString(inputField.getHeight()) : null);
if (inputField.getHasImage()) {
values[fileNameColumnIndex] = writeFile(inputField);
try {
values[fileNameColumnIndex] = writeFile(inputField);
} catch (Exception e) {
jobOutput.println(e.getMessage());
values[fileNameColumnIndex] = null;
}
}
// no break
case SELECT_MANY_H:
Expand Down

0 comments on commit 91f232a

Please sign in to comment.