--- a/server/python/junius/sync.py
+++ b/server/python/junius/sync.py
@@ -37,17 +37,16 @@ class SyncConductor(object):
self.reactor = reactor
self.db = get_db()
self.active_accounts = []
def _ohNoes(self, failure, *args, **kwargs):
self.log.error('OH NOES! failure! %s', failure)
- #self.reactor.stop()
def _getAllAccounts(self):
return self.db.openView('raindrop!accounts!all', 'all'
).addCallback(self._gotAllAccounts
).addErrback(self._ohNoes)
def _gotAllAccounts(self, rows):
# we don't use a cooperator here as we want them all to run in parallel.