We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78246bd commit a44e876Copy full SHA for a44e876
logicaldoc-core/src/main/java/com/logicaldoc/core/task/Task.java
@@ -221,7 +221,7 @@ public void run() {
221
transactionId = UUID.randomUUID().toString();
222
if (isConcurrent() || (lockManager != null && lockManager.get(getName(), transactionId)))
223
runTask();
224
- } catch (Throwable e) {
+ } catch (Exception e) {
225
log.error(e.getMessage(), e);
226
log.error("The task is stopped");
227
lastRunError = e;
0 commit comments