summaryrefslogtreecommitdiff
path: root/src/mongo/s/d_logic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/d_logic.cpp')
-rw-r--r--src/mongo/s/d_logic.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/s/d_logic.cpp b/src/mongo/s/d_logic.cpp
index bcaad6ce9a5..879901f8c9b 100644
--- a/src/mongo/s/d_logic.cpp
+++ b/src/mongo/s/d_logic.cpp
@@ -44,7 +44,7 @@ using namespace std;
namespace mongo {
bool _handlePossibleShardedMessage( Message &m, DbResponse* dbresponse ) {
- DEV assert( shardingState.enabled() );
+ DEV verify( shardingState.enabled() );
int op = m.operation();
if ( op < 2000
@@ -65,7 +65,7 @@ namespace mongo {
LOG(1) << "connection meta data too old - will retry ns:(" << ns << ") op:(" << opToString(op) << ") " << errmsg << endl;
if ( doesOpGetAResponse( op ) ) {
- assert( dbresponse );
+ verify( dbresponse );
BufBuilder b( 32768 );
b.skip( sizeof( QueryResult ) );
{