~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/archiveuploader/uploadprocessor.py

  • Committer: Curtis Hovey
  • Date: 2008-08-28 14:26:30 UTC
  • mto: This revision was merged to the branch mainline in revision 6926.
  • Revision ID: curtis.hovey@canonical.com-20080828142630-y2gcnnlw7w9aldzz
Fixed comment formats to fidn missing persons, dates, and some bugs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
189
189
        fsroot_lock = GlobalLock(lockfile_path)
190
190
        mode = stat.S_IMODE(os.stat(lockfile_path).st_mode)
191
191
 
192
 
        # XXX cprov 20081024: The lockfile permission can only be changed
193
 
        # by its owner. Since we can't predict which process will create
194
 
        # it in production systems we simply ignore errors when trying to
195
 
        # grant the right permission. At least, one of the process will
196
 
        # be able to do so. See further information in bug #185731.
 
192
        # XXX cprov 20081024 bug=185731: The lockfile permission can only be
 
193
        # changed by its owner. Since we can't predict which process will
 
194
        # create it in production systems we simply ignore errors when trying
 
195
        # to grant the right permission. At least, one of the process will
 
196
        # be able to do so.
197
197
        try:
198
198
            os.chmod(lockfile_path, mode | stat.S_IWGRP)
199
199
        except OSError, err: