summaryrefslogtreecommitdiffstats
path: root/xlators/features/marker/utils/syncdaemon/master.py
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/features/marker/utils/syncdaemon/master.py')
-rw-r--r--xlators/features/marker/utils/syncdaemon/master.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/xlators/features/marker/utils/syncdaemon/master.py b/xlators/features/marker/utils/syncdaemon/master.py
index fd5a2dcda..f6403fcf6 100644
--- a/xlators/features/marker/utils/syncdaemon/master.py
+++ b/xlators/features/marker/utils/syncdaemon/master.py
@@ -1,6 +1,5 @@
import os
import sys
-import threading
import time
import stat
import signal
@@ -106,7 +105,7 @@ class GMaster(object):
gap = min(10, gap)
self.slave.server.keep_alive(vi)
time.sleep(gap)
- t = threading.Thread(target=keep_alive)
+ t = Thread(target=keep_alive)
t.setDaemon(True)
t.start()
while True: