~ubuntu-branches/ubuntu/trusty/swift/trusty-updates

« back to all changes in this revision

Viewing changes to swift/common/daemon.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Soren Hansen, Chuck Short
  • Date: 2012-09-07 19:02:36 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20120907190236-fqrmbzm7v6zivs8d
Tags: 1.7.0-0ubuntu1
[ Soren Hansen ]
* Update debian/watch to account for symbolically named tarballs and
  use newer URL.
* Run unit tests at build time.
* Fix Launchpad URLs in debian/watch.

[ Chuck Short ]
* New upstream release
* debian/control: Add pubthon-moc as a build dep
* debian/rules: Dont fail if testsuite fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
    else:
85
85
        logger = utils.get_logger(conf, conf.get('log_name', section_name),
86
86
           log_to_console=kwargs.pop('verbose', False), log_route=section_name)
 
87
 
 
88
    # disable fallocate if desired
 
89
    if conf.get('disable_fallocate', 'no').lower() in utils.TRUE_VALUES:
 
90
        utils.disable_fallocate()
 
91
 
87
92
    try:
88
93
        klass(conf).run(once=once, **kwargs)
89
94
    except KeyboardInterrupt: