propagate exception on parsing work (PR request)

This commit is contained in:
Enrico Ottonello 2020-10-22 14:02:32 +02:00
parent a97ad20c7b
commit ab083f9946
1 changed files with 2 additions and 5 deletions

View File

@ -128,10 +128,7 @@ public class ActivitiesDumpReader {
}
}
} catch (Exception e) {
Log
.warn(
"Parsing work from tar archive and xml work: " + filename + " " + e.getMessage());
// Log.warn(e);
throw new Exception(filename, e);
}
if ((counter % XML_WORKS_PARSED_COUNTER_LOG_INTERVAL) == 0) {
@ -143,7 +140,7 @@ public class ActivitiesDumpReader {
}
}
}
} catch (IOException e) {
} catch (Exception e) {
Log.warn("Parsing work from gzip archive: " + e.getMessage());
Log.warn(e);
throw new RuntimeException(e);