Skip to content

Commit

Permalink
fix remove broadcast check
Browse files Browse the repository at this point in the history
  • Loading branch information
erh committed May 13, 2011
1 parent 78644ab commit decf327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/instance.cpp
Expand Up @@ -488,7 +488,7 @@ namespace mongo {

writelock lk(ns);
// if this ever moves to outside of lock, need to adjust check Client::Context::_finishInit
if ( ! broadcast & handlePossibleShardedMessage( m , 0 ) )
if ( ! broadcast && handlePossibleShardedMessage( m , 0 ) )
return;

Client::Context ctx(ns);
Expand Down

0 comments on commit decf327

Please sign in to comment.