зеркало из https://github.com/Azure/YCSB.git
[mongodb] return OK on updates with w=0
This commit is contained in:
Родитель
02316063ec
Коммит
ad98bc505a
|
@ -462,7 +462,7 @@ public class AsyncMongoDbClient extends DB {
|
|||
}
|
||||
final long res =
|
||||
collection.update(query, update, false, false, writeConcern);
|
||||
return res == 1 ? Status.OK : Status.NOT_FOUND;
|
||||
return writeConcern == Durability.NONE || res == 1 ? Status.OK : Status.NOT_FOUND;
|
||||
} catch (final Exception e) {
|
||||
System.err.println(e.toString());
|
||||
return Status.ERROR;
|
||||
|
|
Загрузка…
Ссылка в новой задаче