Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-network-client
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@sugarlabs.org>2013-03-24 17:17:42 (GMT)
committer Aleksey Lim <alsroot@sugarlabs.org>2013-03-24 17:17:42 (GMT)
commita978a14bae22d7322196a73bf2e5bfff69a971ea (patch)
treebbdaf11ab0ab4f5d9302f5d83715d5c3e71c9562 /sugar-network-client
parent7f66d8739502a6c959d0db05990b7f2f74fa36ee (diff)
Sync local contexts only on changes
Diffstat (limited to 'sugar-network-client')
-rwxr-xr-xsugar-network-client4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar-network-client b/sugar-network-client
index b8d8437..bad15da 100755
--- a/sugar-network-client
+++ b/sugar-network-client
@@ -72,7 +72,7 @@ class Application(application.Daemon):
volume = Volume(client.path('db'))
try:
- ClientCommands(volume).populate()
+ volume.populate()
clones.populate(volume['context'], client.activity_dirs.value)
finally:
volume.close()
@@ -119,7 +119,7 @@ class Application(application.Daemon):
self.accept()
def final_start():
- commands.populate()
+ volume.populate()
self.jobs.spawn(clones.monitor, volume['context'],
client.activity_dirs.value)