Closed
Bug 717889
Opened 14 years ago
Closed 14 years ago
Cron <root@dm-symbolpush01> /mnt/netapp/breakpad/cleanup-breakpad-symbols.sh > /dev/null
Categories
(mozilla.org Graveyard :: Server Operations, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jabba, Assigned: rtucker)
Details
Attachments
(1 file, 1 obsolete file)
|
326 bytes,
patch
|
Details | Diff | Splinter Review |
Every day, we get a cronmail like this. Not sure what is going on there.
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/1FC1EADF08A5886D54699F09FBD2CD800/thunderbird.sym
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/1FC1EADF08A5886D54699F09FBD2CD800/thunderbird.dSYM.tar.bz2
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/7713F7FB35838010491C4E1C79741A140/thunderbird.sym
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/7713F7FB35838010491C4E1C79741A140/thunderbird.dSYM.tar.bz2
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/6BA12D374225E79CF4346DCB950F7F430/thunderbird.sym
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/6BA12D374225E79CF4346DCB950F7F430/thunderbird.dSYM.tar.bz2
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/5BBB231A6676D4E5D05ABC29A350A3000/thunderbird.sym
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/5BBB231A6676D4E5D05ABC29A350A3000/thunderbird.dSYM.tar.bz2
Comment 1•14 years ago
|
||
Do those files exist? If so, then perhaps it's a permissions problem. If not, then maybe we just need to fix the cleanup script to not error on trying to remove files that don't exist.
| Reporter | ||
Comment 2•14 years ago
|
||
Today's cron has this list:
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/82EA5F56CE7682D6AA8C6ACEA6120DB80/thunderbird.sym
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/82EA5F56CE7682D6AA8C6ACEA6120DB80/thunderbird.dSYM.tar.bz2
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/47C0CFAACC4BA2CD32981C0AFEF92DBE0/thunderbird.sym
Error removing file: /mnt/netapp/breakpad/symbols_tbrd/thunderbird/47C0CFAACC4BA2CD32981C0AFEF92DBE0/thunderbird.dSYM.tar.bz2
And indeed it appears that 82EA5F56CE7682D6AA8C6ACEA6120DB80 and 47C0CFAACC4BA2CD32981C0AFEF92DBE0 directories do not exist. Any idea why it would try to delete things that don't exist?
Comment 3•14 years ago
|
||
It's possible for binaries from different builds to wind up with the same identifiers. The script should handle that properly, but it's possible it screwed up. I don't have time right now to look into this, but if you wanted to make it skip trying to delete files that don't exist, you'd make a change here:
http://hg.mozilla.org/build/tools/file/tip/buildfarm/breakpad/cleanup-breakpad-symbols.py#l97
Updated•14 years ago
|
Assignee: server-ops → rtucker
Component: Server Operations: Web Operations → Server Operations
| Assignee | ||
Comment 4•14 years ago
|
||
Check to confirm that the file exists, if not continue through the loop.
If the file exists and cannot be deleted, throw exception as before.
Attachment #591541 -
Flags: review?
| Assignee | ||
Comment 5•14 years ago
|
||
Comment on attachment 591541 [details] [diff] [review]
Patch applied to cleanup-breakpad-symbols.diff
This:
if os.path.isfile(path):
Should be:
if os.path.isfile(f):
| Assignee | ||
Updated•14 years ago
|
Group: infra
| Assignee | ||
Comment 6•14 years ago
|
||
Attachment #591541 -
Attachment is obsolete: true
Attachment #591541 -
Flags: review?
| Assignee | ||
Comment 7•14 years ago
|
||
Ted,
I attached the final patch revision. Please let me know when you've applied it and commited. I'll then set up dm-symbolpush01 to use the version from the repository.
| Reporter | ||
Comment 8•14 years ago
|
||
Are we good here? Just waiting for Ted to commit the patch?
Comment 9•14 years ago
|
||
http://hg.mozilla.org/build/tools/rev/200974ed3156
Sorry, I lost track of this. I just pushed your change.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•