mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
SERVER-580 try to remove windows warning
This commit is contained in:
parent
0de2e2e29f
commit
ee3e5923e5
@ -132,7 +132,7 @@ namespace mongo {
|
|||||||
// returns false if the slave has been reset
|
// returns false if the slave has been reset
|
||||||
bool updateSetsWithLocalOps( OpTime &localLogTail, bool mayUnlock );
|
bool updateSetsWithLocalOps( OpTime &localLogTail, bool mayUnlock );
|
||||||
string ns() const { return string( "local.oplog.$" ) + sourceName(); }
|
string ns() const { return string( "local.oplog.$" ) + sourceName(); }
|
||||||
int _sleepAdviceTime;
|
unsigned _sleepAdviceTime;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static void applyOperation(const BSONObj& op);
|
static void applyOperation(const BSONObj& op);
|
||||||
@ -181,7 +181,7 @@ namespace mongo {
|
|||||||
int sleepAdvice() const {
|
int sleepAdvice() const {
|
||||||
if ( !_sleepAdviceTime )
|
if ( !_sleepAdviceTime )
|
||||||
return 0;
|
return 0;
|
||||||
int wait = _sleepAdviceTime - time( 0 );
|
int wait = _sleepAdviceTime - unsigned( time( 0 ) );
|
||||||
return wait > 0 ? wait : 0;
|
return wait > 0 ? wait : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user