summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_kill_op.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/commands/cluster_kill_op.cpp')
-rw-r--r--src/mongo/s/commands/cluster_kill_op.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/s/commands/cluster_kill_op.cpp b/src/mongo/s/commands/cluster_kill_op.cpp
index 31590d3c5a9..1e626883ff9 100644
--- a/src/mongo/s/commands/cluster_kill_op.cpp
+++ b/src/mongo/s/commands/cluster_kill_op.cpp
@@ -91,7 +91,9 @@ public:
uassert(28625,
str::stream() << "The op argument to killOp must be of the format shardid:opid"
- << " but found \"" << opToKill << '"',
+ << " but found \""
+ << opToKill
+ << '"',
(opToKill.size() >= 3) && // must have at least N:N
(opSepPos != std::string::npos) && // must have ':' as separator
(opSepPos != 0) && // can't be :NN