Closed
Bug 973984
Opened 11 years ago
Closed 11 years ago
Datazilla Repository Update
Categories
(Infrastructure & Operations Graveyard :: WebOps: Other, task)
Infrastructure & Operations Graveyard
WebOps: Other
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jeads, Assigned: cturra)
Details
A new datazilla repository is ready to push to stage. This release includes the following changes:
1.) This modified repository fixes a recurring error when replicates are in the form of float values but are being cast to an int. This causes an uncaught ValueError to be raised. The int cast has been replaced with float https://github.com/mozilla/datazilla/blob/master/datazilla/model/base.py#L1321
Assignee | ||
Comment 1•11 years ago
|
||
grabbing this. the admin node is currently in a pretty messy state because it's run out of inodes due to spooled mail jobs (/var/spool/postfix/maildrop/) from the datazilla cron. i am working on cleaning up those spool files then will do this push.
:jeads - we should spin off a separate discussion about this datazilla cron mail too.
Assignee: server-ops-webops → cturra
OS: Mac OS X → All
Hardware: x86 → All
Assignee | ||
Comment 2•11 years ago
|
||
stage push complete and inode cleanup still in progress. let me know when you're happy with stage and i will push the changes out to prod.
Flags: needinfo?(jeads)
Reporter | ||
Comment 3•11 years ago
|
||
I'm seeing an odd error on stage.
AttributeError: 'Settings' object has no attribute 'ALLOWED_PROJECTS'
This would imply that the file datazilla/settings/local.py has been modified and no longer matches production. Might need to copy the local.py file from production to stage, the 'ALLOWED_PROJECTS' env variable should be defined.
Flags: needinfo?(jeads)
Assignee | ||
Comment 4•11 years ago
|
||
the ALLOWED_PROJECTS setting is identical between stage and prod.
[root@datazillaadm.private.scl3 datazilla.allizom.org]# grep "ALLOWED_PROJECTS" /data/datazilla-stage/src/datazilla.allizom.org/datazilla/datazilla/settings/local.py
ALLOWED_PROJECTS = os.environ.get("ALLOWED_PROJECTS", "b2g|b2gtw|games|jetperf|pushlog|marketapps|microperf|stoneridge|talos|test|webpagetest")
[root@datazillaadm.private.scl3 datazilla.allizom.org]# grep "ALLOWED_PROJECTS" /data/datazilla/src/datazilla.mozilla.org/datazilla/datazilla/settings/local.py
ALLOWED_PROJECTS = os.environ.get("ALLOWED_PROJECTS", "b2g|b2gtw|games|jetperf|pushlog|marketapps|microperf|stoneridge|talos|test|webpagetest")
Reporter | ||
Comment 5•11 years ago
|
||
I'm unable to reproduce the AttributeError in comment 3. It seems to have only occurred once, I'm guessing something in the push to stage was not initialized when I started testing. Please go ahead and push this to production.
Assignee | ||
Comment 6•11 years ago
|
||
push to prod complete.
[root@datazillaadm.private.scl3 datazilla.mozilla.org]# bash -x update
+ CODE_DIR=/data/datazilla/src/datazilla.mozilla.org/datazilla
+ VENDOR_DIR=/data/datazilla/src/datazilla.mozilla.org/datazilla/vendor
+ update_code
+ echo -e 'Updating code...'
Updating code...
+ cd /data/datazilla/src/datazilla.mozilla.org/datazilla
+ git fetch origin -q
+ checkretval
+ retval=0
+ [[ 0 -gt 0 ]]
+ git checkout -f origin/master -q
+ checkretval
+ retval=0
+ [[ 0 -gt 0 ]]
+ git submodule sync -q
+ checkretval
+ retval=0
+ [[ 0 -gt 0 ]]
+ git submodule update --init --recursive -q
+ checkretval
+ retval=0
+ [[ 0 -gt 0 ]]
+ echo -e 'Cleaning gitignore and pyc files...'
Cleaning gitignore and pyc files...
+ cd /data/datazilla/src/datazilla.mozilla.org/datazilla
+ find . -type f -name .gitignore -or -name '*.pyc' -delete
+ checkretval
+ retval=0
+ [[ 0 -gt 0 ]]
+ echo -e 'Storing revision information...'
Storing revision information...
+ cd /data/datazilla/src/datazilla.mozilla.org/datazilla
+ git rev-parse HEAD
update: line 40: /data/datazilla/src/datazilla.mozilla.org/datazilla/media/revision: No such file or directory
+ generate_revision_info
update: line 43: /data/datazilla/src/datazilla.mozilla.org/datazilla/media/revision_info.txt: No such file or directory
+ echo -e 'Deploying code...'
Deploying code...
+ '[' xterm == dumb ']'
+ /data/datazilla/deploy datazilla.mozilla.org
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Updated•6 years ago
|
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•