Skip to content
Snippets Groups Projects
Commit 0c8d91ae authored by Stavros Sachtouris's avatar Stavros Sachtouris Committed by Giorgos Korfiatis
Browse files

Launch syncer deamons when starting GUI

parent d354ce8b
No related branches found
No related tags found
No related merge requests found
......@@ -175,9 +175,12 @@ class WebSocketProtocol(WebSocket):
self.syncer = syncer.FileSyncer(syncer_settings, master, slave)
self.syncer_settings = syncer_settings
self.syncer.probe_and_sync_all()
self.syncer.launch_daemons()
# Syncer-related methods
def get_status(self):
if (self.can_sync()):
LOG.debug('::::::::: %s' % self.syncer.get_next_message())
self.status['paused'] = self.syncer.paused
self.status['progress'] = 50
self.status['can_sync'] = self.can_sync()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment