summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/pipeline.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/pipeline.cpp b/common/pipeline.cpp
index bb40a85..9a4f431 100644
--- a/common/pipeline.cpp
+++ b/common/pipeline.cpp
@@ -62,6 +62,9 @@ public:
62 62
63Pipeline::Pipeline(const ResourceContext &context) : QObject(nullptr), d(new Private(context)) 63Pipeline::Pipeline(const ResourceContext &context) : QObject(nullptr), d(new Private(context))
64{ 64{
65 //Create main store immediately on first start
66 d->entityStore.startTransaction(DataStore::ReadWrite);
67 d->entityStore.commitTransaction();
65} 68}
66 69
67Pipeline::~Pipeline() 70Pipeline::~Pipeline()