summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/synchronizer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/synchronizer.cpp b/common/synchronizer.cpp
index 3cd0cb6..e19140c 100644
--- a/common/synchronizer.cpp
+++ b/common/synchronizer.cpp
@@ -295,9 +295,9 @@ KAsync::Job<void> Synchronizer::processRequest(const SyncRequest &request)
295 modifiedRequest.options = SyncRequest::NoOptions; 295 modifiedRequest.options = SyncRequest::NoOptions;
296 //Normally we won't have a requestId here 296 //Normally we won't have a requestId here
297 if (modifiedRequest.requestId.isEmpty()) { 297 if (modifiedRequest.requestId.isEmpty()) {
298 modifiedRequest.requestId = QUuid::createUuid().toRfc4122(); 298 modifiedRequest.requestId = QUuid::createUuid().toByteArray();
299 } 299 }
300 SinkWarningCtx(mLogCtx) << "Enquing flush request " << modifiedRequest.requestId; 300 SinkTraceCtx(mLogCtx) << "Enqueuing flush request " << modifiedRequest.requestId;
301 301
302 //The sync request will be executed once the flush has completed 302 //The sync request will be executed once the flush has completed
303 mPendingSyncRequests.insert(modifiedRequest.requestId, modifiedRequest); 303 mPendingSyncRequests.insert(modifiedRequest.requestId, modifiedRequest);