summaryrefslogtreecommitdiffstats
path: root/common/storage/entitystore.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-02-22 10:16:18 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-02-22 10:16:18 +0100
commit2beb09e8b3f4922a15ec0abde737d4cf9b9d4f8b (patch)
tree50115abf9b041d66ab9e4242af52cd16a7a9a3db /common/storage/entitystore.cpp
parent280b1250c0a038c2cf09fae3848ed0adefecc430 (diff)
downloadsink-2beb09e8b3f4922a15ec0abde737d4cf9b9d4f8b.tar.gz
sink-2beb09e8b3f4922a15ec0abde737d4cf9b9d4f8b.zip
Deal with removals in reduced queries
Diffstat (limited to 'common/storage/entitystore.cpp')
-rw-r--r--common/storage/entitystore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp
index 020f3fd..7da7efa 100644
--- a/common/storage/entitystore.cpp
+++ b/common/storage/entitystore.cpp
@@ -563,7 +563,7 @@ void EntityStore::readPrevious(const QByteArray &type, const QByteArray &uid, qi
563 return true; 563 return true;
564 }, 564 },
565 [&](const Sink::Storage::DataStore::Error &error) { SinkWarningCtx(d->logCtx) << "Failed to read current value from storage: " << error.message; }, true); 565 [&](const Sink::Storage::DataStore::Error &error) { SinkWarningCtx(d->logCtx) << "Failed to read current value from storage: " << error.message; }, true);
566 return readEntity(type, Sink::Storage::DataStore::assembleKey(uid, latestRevision), callback); 566 readEntity(type, Sink::Storage::DataStore::assembleKey(uid, latestRevision), callback);
567} 567}
568 568
569void EntityStore::readPrevious(const QByteArray &type, const QByteArray &uid, qint64 revision, const std::function<void(const ApplicationDomain::ApplicationDomainType &)> callback) 569void EntityStore::readPrevious(const QByteArray &type, const QByteArray &uid, qint64 revision, const std::function<void(const ApplicationDomain::ApplicationDomainType &)> callback)