Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBenjamin Saller <bcsaller@objectrealms.net>2007-07-03 20:41:40 (GMT)
committer Benjamin Saller <bcsaller@objectrealms.net>2007-07-03 20:41:40 (GMT)
commit72c67936bcd09ece72444111bf292d14a78c5adc (patch)
tree4457265b6c3fc16458a425e2c85c749cb9246e30 /bin
parentffaeca0e3b1e614dbe31262759e542b60ba9539e (diff)
pass the option correctly
Diffstat (limited to 'bin')
-rwxr-xr-xbin/datastore-service4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/datastore-service b/bin/datastore-service
index 439394d..d43fd6d 100755
--- a/bin/datastore-service
+++ b/bin/datastore-service
@@ -48,10 +48,10 @@ if not sys.stdin.isatty():
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
bus = dbus.SessionBus()
-ds = DataStore(querymanager_sync_index=False)
+ds = DataStore()
ds.registerBackend(backingstore.FileBackingStore)
ds.registerBackend(backingstore.InplaceFileBackingStore)
-ds.mount(repo_dir, {'sync_index': False})
+ds.mount(repo_dir, {'querymanager_sync_index': False})
# and run it
logger.info("Starting Datastore %s" % (repo_dir))