Skip to content
Snippets Groups Projects
Commit b27f0b63 authored by srosse's avatar srosse
Browse files

OO-2963: make sure the question are committed on the database before starting the indexing

parent 21e37809
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,6 @@ import org.olat.basesecurity.SecurityGroupMembershipImpl;
import org.olat.core.commons.persistence.DB;
import org.olat.core.commons.services.mark.impl.MarkImpl;
import org.olat.core.id.Identity;
import org.olat.core.logging.OLog;
import org.olat.core.logging.Tracing;
import org.olat.core.util.StringHelper;
import org.olat.group.BusinessGroup;
import org.olat.modules.qpool.QuestionItem;
......@@ -62,8 +60,6 @@ import org.springframework.stereotype.Service;
@Service("questionDao")
public class QuestionItemDAO {
private static final OLog log = Tracing.createLoggerFor(QuestionItemDAO.class);
@Autowired
private DB dbInstance;
@Autowired
......
......@@ -87,6 +87,7 @@ public class QuestionItemDocumentFactory {
oDocument.setParentContextType(searchResourceContext.getParentContextType());
oDocument.setParentContextName(searchResourceContext.getParentContextName());
System.out.println(item.getTitle());
//author
StringBuilder authorSb = new StringBuilder();
List<Identity> owners = qpoolService.getAuthors(item);
......
......@@ -330,6 +330,7 @@ public class QuestionPoolServiceImpl implements QPoolService {
public QuestionItem createAndPersistItem(Identity owner, String subject, String format, String language,
TaxonomyLevel taxonLevel, String dir, String rootFilename, QItemType type) {
QuestionItemImpl newItem = questionItemDao.createAndPersist(owner, subject, format, language, taxonLevel, dir, rootFilename, type);
dbInstance.commit();
lifeIndexer.indexDocument(QItemDocument.TYPE, newItem.getKey());
return newItem;
}
......@@ -406,6 +407,7 @@ public class QuestionPoolServiceImpl implements QPoolService {
poolDao.addItemToPool(item, pools, editable);
keys.add(item.getKey());
}
dbInstance.commit();
lifeIndexer.indexDocument(QItemDocument.TYPE, keys);
}
......
......@@ -28,6 +28,7 @@ import java.util.Map;
import org.olat.NewControllerFactory;
import org.olat.core.CoreSpringFactory;
import org.olat.core.commons.fullWebApp.LayoutMain3ColsController;
import org.olat.core.commons.persistence.DB;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.components.form.flexible.FormItem;
......@@ -144,6 +145,8 @@ public class QuestionListController extends AbstractItemListController implement
private boolean itemCollectionDirty = false;
@Autowired
private DB dbInstance;
@Autowired
private QuestionPoolModule qpoolModule;
@Autowired
......@@ -570,6 +573,9 @@ public class QuestionListController extends AbstractItemListController implement
getSource().postImport(newItems, false);
getItemsTable().reset();
dbInstance.commit();
qpoolService.index(newItems);
QPoolEvent qce = new QPoolEvent(QPoolEvent.ITEM_CREATED);
fireEvent(ureq, qce);
......
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