diff options
author | gregs <greg@10gen.com> | 2011-06-16 16:14:17 -0400 |
---|---|---|
committer | gregs <greg@10gen.com> | 2011-06-16 17:34:40 -0400 |
commit | 884e100ec01d21f493c327a72b92a5b1a5dfb440 (patch) | |
tree | d6e39c865cf55ba0d989c26fac262cad6f2c16cf /db/instance.h | |
parent | 3316127d58babf98830a8f59fbb16c222df88107 (diff) | |
download | mongo-884e100ec01d21f493c327a72b92a5b1a5dfb440.tar.gz |
better logic for no-result in rs for parallel ops SERVER-2481
Diffstat (limited to 'db/instance.h')
-rw-r--r-- | db/instance.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/instance.h b/db/instance.h index 7bf163eb6ae..f5133b18ca9 100644 --- a/db/instance.h +++ b/db/instance.h @@ -130,7 +130,7 @@ namespace mongo { return "localhost"; // TODO: should this have the port? } virtual bool call( Message &toSend, Message &response, bool assertOk=true , string * actualServer = 0 ); - virtual void say( Message &toSend ); + virtual void say( Message &toSend, bool isRetry = false ); virtual void sayPiggyBack( Message &toSend ) { // don't need to piggy back when connected locally return say( toSend ); |