summaryrefslogtreecommitdiff
path: root/client/distlock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/distlock.cpp')
-rw-r--r--client/distlock.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/client/distlock.cpp b/client/distlock.cpp
index 05e54c08d0c..1e4da211271 100644
--- a/client/distlock.cpp
+++ b/client/distlock.cpp
@@ -135,7 +135,17 @@ namespace mongo {
return false;
}
- unsigned long long elapsed = jsTime() - lastPing["ping"].Date(); // in ms
+ unsigned long long now = jsTime();
+ unsigned long long pingTime = lastPing["ping"].Date();
+
+ if ( now < pingTime ) {
+ // clock skew
+ warning() << "dist_lock has detected clock skew of " << ( pingTime - now ) << "ms" << endl;
+ conn.done();
+ return false;
+ }
+
+ unsigned long long elapsed = now - pingTime;
elapsed = elapsed / ( 1000 * 60 ); // convert to minutes
if ( elapsed <= _takeoverMinutes ){