Skip to content

Commit

Permalink
Have DoNothing signal completion
Browse files Browse the repository at this point in the history
Just like all the other operations.
  • Loading branch information
niik committed Oct 23, 2015
1 parent 93628c7 commit 55a3d7d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Akavache.Sqlite3/OperationQueue.cs
Expand Up @@ -300,6 +300,7 @@ void ProcessItems(List<OperationQueueItem> toProcess)
switch (item.OperationType)
{
case OperationType.DoNothing:
MarshalCompletion(item.Completion, () => { }, commitResult);
break;
case OperationType.BulkInsertSqliteOperation:
MarshalCompletion(item.Completion, bulkInsertKey.PrepareToExecute(item.ParametersAsElements), commitResult);
Expand Down

0 comments on commit 55a3d7d

Please sign in to comment.