We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cdb3e1 commit 3d02533Copy full SHA for 3d02533
1 file changed
src/ExtCmd.actor.cpp
@@ -1007,9 +1007,11 @@ ACTOR static Future<Reference<ExtMsgReply>> deleteAndReply(Reference<ExtConnecti
1007
for (auto& writeError : ret.writeErrors) {
1008
arrayBuilder << writeError;
1009
}
1010
- reply->addDocument(BSON("ok" << 1 << "n"
1011
- << "0"
1012
- << "writeErrors" << arrayBuilder.arr()));
+ // clang-format off
+ reply->addDocument(BSON("ok" << 1 <<
+ "n" << 0 <<
1013
+ "writeErrors" << arrayBuilder.arr()));
1014
+ // clang-format on
1015
1016
return reply;
1017
0 commit comments