summaryrefslogtreecommitdiff
path: root/designate/dnsutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'designate/dnsutils.py')
-rw-r--r--designate/dnsutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/designate/dnsutils.py b/designate/dnsutils.py
index 81df8409..43c45dff 100644
--- a/designate/dnsutils.py
+++ b/designate/dnsutils.py
@@ -203,12 +203,12 @@ class ZoneLock(object):
with self.lock:
# If no one holds the lock for the zone, grant it
if zone not in self.data:
- self.data[zone] = time.time()
+ self.data[zone] = time.monotonic()
return True
# Otherwise, get the time that it was locked
locktime = self.data[zone]
- now = time.time()
+ now = time.monotonic()
period = now - locktime