Skip to content

Commit

Permalink
Disable replication, quota and dbus
Browse files Browse the repository at this point in the history
  • Loading branch information
piotras committed Feb 10, 2012
1 parent 5d4cee9 commit 6b4f321
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion midgardmvc/lib/midgard/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ def connect(self):

if not self._connected:
raise Exception('Could not open database connection, reason: %s' % self._connection.get_error_string())


self._connection.enable_dbus(False)
self._connection.enable_quota(False)
#self._connection.enable_replication(False)

return True

def reconnect(self):
Expand Down

0 comments on commit 6b4f321

Please sign in to comment.