~ubuntu-branches/ubuntu/trusty/desktopcouch/trusty

« back to all changes in this revision

Viewing changes to desktopcouch/local_files.py

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2010-04-19 12:52:22 UTC
  • mfrom: (12.1.9 lucid)
  • Revision ID: james.westby@ubuntu.com-20100419125222-zsh9lrm15h84951j
* debian/patches/lp_522538.patch
  - Handle reconnects if the server isn't running (LP: #522538)

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
            'httpd': {
76
76
                'bind_address': '127.0.0.1',
77
77
                'port': '0',
78
 
                'WWW-Authenticate': 'Basic realm="bookmarkable-user-auth"'
79
78
            },
80
79
            'log': {
81
80
                'file': ctx.file_log,
209
208
    def __init__(self, run_dir, db_dir, config_dir, with_auth=True,
210
209
            keyring=gnomekeyring):  # (cache, data, config)
211
210
 
212
 
        self.couchdb_log_level = 'notice'
 
211
        self.couchdb_log_level = 'info'
213
212
 
214
213
        for d in (run_dir, db_dir, config_dir):
215
214
            if not os.path.isdir(d):