Skip to content
Snippets Groups Projects
Commit 640e21e7 authored by uhensler's avatar uhensler
Browse files

Merge branch 'OpenOLAT_14.2' into OpenOLAT_15.0

parents 832675ea c73aedb4
No related branches found
No related tags found
No related merge requests found
...@@ -333,7 +333,12 @@ public class EvaluationFormExecutionController extends FormBasicController imple ...@@ -333,7 +333,12 @@ public class EvaluationFormExecutionController extends FormBasicController imple
allSaved = false; allSaved = false;
} }
} }
dbInstance.commit(); try {
dbInstance.commit();
} catch (Exception e) {
log.error("Commiting saved evaluation form response failed!", e);
allSaved = false;
}
if (!allSaved) { if (!allSaved) {
showError("error.cannot.save"); showError("error.cannot.save");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment