Skip to content
Snippets Groups Projects
Commit bc9f81b6 authored by buczekp's avatar buczekp
Browse files

[LMS-1603] workaround - use merge() instead of update()

SVN: 16932
parent 9e1ffab8
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ public final class PersonDAO extends AbstractGenericEntityDAO<PersonPE> implemen
validatePE(person);
final HibernateTemplate template = getHibernateTemplate();
template.update(person);
template.merge(person); // WORKAROUND update cannot be used - see LMS-1603
template.flush();
if (operationLog.isInfoEnabled())
{
......
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