jeblair | mtreinish: was that an exec? i believe refreshonly is only needed/used for execs. | 00:01 |
---|---|---|
mtreinish | jeblair: yeah it was an exec | 00:01 |
*** markvoelker has quit IRC | 00:01 | |
*** andreykurilin_ has quit IRC | 00:02 | |
*** achanda has quit IRC | 00:02 | |
jeblair | mtreinish: so it makes sense there because you're changing the normal behavior of exec (run every time); whereas the normal behavior of service is merely to ensure that it's running (or not, as configured). the subscribe attr specifically says to restart it when it revieves those events. | 00:03 |
mtreinish | jeblair: ah ok, that makes sense | 00:03 |
mtreinish | I'll respin it, one sec | 00:03 |
openstackgerrit | Matthew Treinish proposed openstack-infra/puppet-subunit2sql: Subscribe worker service to subunit2sql package https://review.openstack.org/164374 | 00:04 |
mtreinish | jeblair: ^^^ | 00:04 |
*** bknudson has quit IRC | 00:05 | |
pleia2 | yeah, so fwiw, I'm not seeing any differences in the worker debug logs (the only logs that exist) | 00:05 |
*** carl_baldwin has quit IRC | 00:05 | |
mtreinish | pleia2: yeah that makes sense if it was restarted I'd expect it to fail | 00:05 |
mtreinish | because the schema it expects doesn't match the state of the db yet | 00:06 |
pleia2 | aha | 00:06 |
mtreinish | but since the old version was in memory it probably won't complain until the restart | 00:07 |
*** purp_away is now known as purp | 00:07 | |
mtreinish | pleia2: I wonder if there's a way to check if the db migration is actually running? | 00:07 |
openstackgerrit | Merged stackforge/gertty: Hide webbrowser output https://review.openstack.org/163085 | 00:08 |
openstackgerrit | Merged stackforge/gertty: Add indexes to revision table https://review.openstack.org/163262 | 00:08 |
openstackgerrit | Merged stackforge/gertty: Only sync parent commit once https://review.openstack.org/163451 | 00:08 |
openstackgerrit | Merged stackforge/gertty: Upgrade to requests 2.5.3 https://review.openstack.org/163473 | 00:08 |
openstackgerrit | Merged stackforge/gertty: Add a 30 second timeout for requests https://review.openstack.org/163474 | 00:08 |
openstackgerrit | Merged stackforge/gertty: Display times in local tz https://review.openstack.org/163494 | 00:09 |
openstackgerrit | Merged stackforge/gertty: Don't display project column in project change list https://review.openstack.org/163843 | 00:09 |
pleia2 | mtreinish: which system does the db migration run on? | 00:09 |
openstackgerrit | Merged stackforge/gertty: Switch "Updated" column to fixed width https://review.openstack.org/163853 | 00:09 |
pleia2 | (sorry, not too familiar with this bit of the infra yet) | 00:09 |
*** melwitt has quit IRC | 00:09 | |
mtreinish | pleia2: no worries, it's pretty undocumented at this point, basically still my pet project | 00:09 |
pleia2 | at the moment I'm not seeing anything on logstash.o.o that looks like it process-wise | 00:10 |
*** ashleighfarnham has quit IRC | 00:10 | |
mtreinish | pleia2: its supposed to be running on logstash.o.o :( | 00:10 |
*** Longgeek has joined #openstack-infra | 00:10 | |
mtreinish | the command is subunit2sql-db-manage | 00:10 |
openstackgerrit | Merged openstack-infra/puppet-storyboard: Parameterized working directories. https://review.openstack.org/157587 | 00:11 |
pleia2 | ok, so not on the worker, I'll look at logs | 00:11 |
jeblair | mtreinish: this might be a good time to write some of this up for http://ci.openstack.org/ (maybe add to the logstash page?) | 00:12 |
mtreinish | pleia2: yeah not on the worker, the worker just handles the gearman jobs for storing the streams | 00:12 |
mtreinish | jeblair: yeah it's been on my todo list for a while | 00:12 |
mtreinish | pleia2: we use logstash.o.o to handle the proxy to the trove instance and running the db migrations | 00:13 |
*** sputnik13 has quit IRC | 00:14 | |
jeblair | pleia2: another thing you might check are the ansible logs from the puppet runs (on puppetmaster) to see if there's any useful output | 00:14 |
pleia2 | so all I can find is the puppet stuff happening, Scheduling refresh of Exec[backup_subunit2sql_db] && Scheduling refresh of Exec[upgrade_subunit2sql_db] | 00:14 |
pleia2 | jeblair: thanks, I'll check | 00:14 |
*** dpyzhov_ has quit IRC | 00:15 | |
jeblair | pleia2: might end up being the same thing, or might have additional lines | 00:15 |
*** hdd_ has joined #openstack-infra | 00:16 | |
*** bdpayne has quit IRC | 00:17 | |
*** Guest3273 has quit IRC | 00:17 | |
*** Longgeek has quit IRC | 00:18 | |
*** alexpilotti has joined #openstack-infra | 00:19 | |
pleia2 | can't say these are my favorite logs ever, but it looks like there is an issue: http://paste.openstack.org/show/192214/ | 00:21 |
*** armax has quit IRC | 00:21 | |
jeblair | mtreinish, pleia2: looks like the timeout killed the schema change process? | 00:21 |
pleia2 | 30m not enough time for backup? | 00:22 |
jeblair | right, backup process | 00:22 |
*** xgerman has quit IRC | 00:22 | |
mtreinish | pleia2: hmm I would have thought 30min was enough for the mysqldump | 00:22 |
mtreinish | it only took ~18min for me at home but I did have to use slightly different args because of my limited permissions | 00:23 |
jeblair | maybe it completed the dump and was running the upgrade? | 00:23 |
jeblair | i'm actually not certain how to read that :/ | 00:23 |
mtreinish | jeblair: that's what I was thinking was it puppet timing out or ansible timing out on puppet? | 00:23 |
*** armax has joined #openstack-infra | 00:23 | |
mtreinish | because I did set the mysqldump timeout to 30min, but the db upgrade to unlimited | 00:24 |
jeblair | mtreinish: it is our self-imposed timeout of puppet. so we tell ansible "run puppet and kill it after 30 mins" because internal puppet timeouts are not enough (github failures stall us indefinitely) | 00:24 |
mtreinish | jeblair: ah ok that explains it then | 00:25 |
mtreinish | the db upgrade will probably take well over 30min | 00:25 |
jeblair | mtreinish: but i am not certain that "scheduling refresh of exec upgrade db" means "i am running exec upgrade db now" | 00:25 |
jeblair | mtreinish: i think it might. so i think it was probably running that, but maybe i'm misinterpreting and it was running the dump. | 00:25 |
mtreinish | jeblair: yeah the wording is weird, but I think the dump finished because it said "Exec[backup_subunit2sql_db]: Triggered 'refresh' from 1 events" | 00:26 |
mtreinish | the other Notice statement indicated it updated the package | 00:26 |
jeblair | i need to run now, sorry | 00:27 |
mtreinish | well there's one way to tell, is the sql.gz file in /opt? | 00:27 |
mtreinish | jeblair: sure np, cya | 00:27 |
pleia2 | checking | 00:27 |
pleia2 | the only thing in /opt is system-config/ | 00:28 |
*** mpopow has quit IRC | 00:28 | |
*** signed8bit is now known as signed8bit_ZZZzz | 00:28 | |
*** flashgordon is now known as jogo | 00:29 | |
mtreinish | pleia2: hmm ok, that's weird it runs the mysqldump with '> /opt/subunit2sql.sql.gz' so if it started at all I'd expect something there | 00:29 |
rhe00 | looks like the change to puppet-subunit2sql broke nodepool image creation. Trying again to see if I caught it at a bad moment. | 00:30 |
pleia2 | mtreinish: my derp, wrong server :) subunit2sql.sql.gz does exist | 00:31 |
mtreinish | rhe00: hmm really, they should be independent | 00:31 |
mtreinish | pleia2: ah ok well then it probably finished the backup and killed it in the middle of the upgrade | 00:31 |
mtreinish | which is kinda scary, I hope it didn't commit any changes or screw anything up... | 00:32 |
pleia2 | mtreinish: hm, it's tiny though, and timestamp of when the puppet job ran: -rw-r--r-- 1 root root 130 Mar 13 23:25 /opt/subunit2sql.sql.gz | 00:32 |
pleia2 | mtreinish: yeah, this didn't work, it's just the mysql dump usage instructions in this file | 00:33 |
mtreinish | oh ok then that's probably timed out then because my local backup from this afternoon is 4.6G | 00:33 |
mtreinish | pleia2: heh, nice | 00:33 |
mtreinish | well that definitely means it killed the upgrade then :( | 00:33 |
mtreinish | so much for automating db migrations... | 00:34 |
pleia2 | :\ | 00:34 |
*** spzala has joined #openstack-infra | 00:34 | |
mtreinish | fwiw, luckily it doesn't look like the db is dead or in some other weird state | 00:36 |
mtreinish | I guess at this point it just makes sense to try and run the migration manually next week? | 00:36 |
rhe00 | mtreinish: http://paste.openstack.org/show/192215/ | 00:36 |
mtreinish | rhe00: oh, because it's using subunit2sql 0.4.0 but the migration failed so the schema doesn't match | 00:37 |
mtreinish | rhe00: I forgot we run subunit2sql as part of the image builds | 00:37 |
mtreinish | err well sql2subunit (which is part of the package) | 00:37 |
mtreinish | pleia2: ^^^ maybe we should manually start the migration now then? | 00:37 |
mtreinish | the other option would be to push a cap on the subunit2sql version in the nodepool scripts until we run the migration | 00:38 |
pleia2 | mtreinish: sure, I'm around as long as you need, but I'll need a walkthrough | 00:38 |
pleia2 | certainly don't want to make it worse | 00:38 |
mtreinish | pleia2: well the command should be just: subunit2sql-db-manage --config-file /etc/subunit2sql.conf upgrade head | 00:39 |
rhe00 | mtreinish: a version cap would be nice as a workaround for now. | 00:39 |
pleia2 | mtreinish: I can approve a version cap if that's the safest solution | 00:39 |
mtreinish | asuuming the config file exists on logstash.o.o | 00:39 |
pleia2 | mtreinish: it does | 00:40 |
mtreinish | and has disable-microsecond-data-migration = True in default | 00:40 |
pleia2 | confirmed | 00:40 |
mtreinish | then assuming the db didn't die because of the killed attempt it should be good to go | 00:40 |
mtreinish | it should only take a few hours to run, who would have guessed an alter table on >65M rows would take that long... | 00:41 |
*** armax has quit IRC | 00:41 | |
pleia2 | hah | 00:42 |
pleia2 | maybe we should wait until Monday for this | 00:42 |
mtreinish | rhe00: is this failure on your personal ci? | 00:42 |
mtreinish | pleia2: sure, I'll push a version cap to unblock nodepool then | 00:42 |
mtreinish | one sec | 00:42 |
rhe00 | yes | 00:42 |
rhe00 | trying to set one up for cinder driver testing | 00:43 |
mtreinish | rhe00: hmm then why are you running the subunit2sql nodepool scripts, there shouldn't be much value for your third party ci | 00:43 |
mtreinish | they're only used to preseed timing data to the test slaves with data from the infra system's runs | 00:43 |
*** dboik has joined #openstack-infra | 00:44 | |
rhe00 | it must be installed by default in the setup scripts that rasselin set up for third party CI | 00:44 |
rhe00 | I have not customized them for our CI | 00:44 |
*** Sukhdev has joined #openstack-infra | 00:44 | |
pleia2 | good to know | 00:45 |
rhe00 | I have not looked into detail where in the scripts that subunit2sql scripts are executed | 00:46 |
openstackgerrit | Matthew Treinish proposed openstack-infra/project-config: Cap the subunit2sql version in the nodepool scripts https://review.openstack.org/164379 | 00:46 |
mtreinish | pleia2: ^^^ let me just check that quoting the args like that works | 00:46 |
*** dboik has quit IRC | 00:48 | |
*** cody-somerville has quit IRC | 00:48 | |
openstackgerrit | Matthew Treinish proposed openstack-infra/project-config: Cap the subunit2sql version in the nodepool scripts https://review.openstack.org/164379 | 00:48 |
mtreinish | pleia2: ^^^ ok that should work | 00:48 |
openstackgerrit | Jesse DeFer proposed openstack-infra/jenkins-job-builder: Add 'Job Log Logger' wrapper https://review.openstack.org/164338 | 00:49 |
mtreinish | rhe00: ^^^ that patch shows the 2 locations its called | 00:49 |
pleia2 | mtreinish: looking | 00:50 |
pleia2 | mtreinish: ah yes, much better than the first patch | 00:50 |
pleia2 | mtreinish: this'll grab subunit2sql-0.3.0, good? | 00:50 |
mtreinish | yeah that was the version we were using before and is what the current schema of the db should be | 00:50 |
rhe00 | mtreinish: ok, I'll take a look | 00:50 |
pleia2 | great | 00:51 |
mtreinish | (err well the schema version is actually a uuid, but that isn't really relevant) | 00:51 |
*** Sukhdev has quit IRC | 00:51 | |
mtreinish | I guess I really had luck on fri 13 :) | 00:52 |
pleia2 | going to let this pass checks before +A just in case | 00:53 |
mtreinish | pleia2: sure | 00:53 |
*** markvoelker has joined #openstack-infra | 00:54 | |
*** achanda has joined #openstack-infra | 00:56 | |
*** rwsu has quit IRC | 00:58 | |
waynr | has anyone using JJB noticed long update times during reconfigure/update/delete of jobs? | 00:58 |
waynr | it's been taking JJB 2 minutes just to update 6 jobs | 00:59 |
waynr | it's definitely not due to slowness in JJB itself, it seems to be happening while POSTing the XML config to Jenkins | 01:00 |
*** ddieterly has joined #openstack-infra | 01:08 | |
*** sarob has quit IRC | 01:08 | |
*** tqtran has quit IRC | 01:11 | |
*** sarob has joined #openstack-infra | 01:12 | |
*** koolhead17 has joined #openstack-infra | 01:13 | |
*** koolhead17 has quit IRC | 01:13 | |
*** koolhead17 has joined #openstack-infra | 01:13 | |
*** spzala has quit IRC | 01:13 | |
*** ivar-lazzaro has quit IRC | 01:16 | |
*** amitgandhinz has joined #openstack-infra | 01:23 | |
*** amitgandhinz has quit IRC | 01:28 | |
*** amitgandhinz has joined #openstack-infra | 01:29 | |
*** ghostpl_ has joined #openstack-infra | 01:33 | |
pleia2 | mtreinish: approved | 01:35 |
*** otter768 has joined #openstack-infra | 01:38 | |
*** gokrokve has quit IRC | 01:39 | |
*** ghostpl_ has quit IRC | 01:41 | |
*** r-daneel has quit IRC | 01:41 | |
*** otter768 has quit IRC | 01:42 | |
openstackgerrit | Merged openstack-infra/project-config: Cap the subunit2sql version in the nodepool scripts https://review.openstack.org/164379 | 01:48 |
*** Ryan_Lane has quit IRC | 01:51 | |
*** esker has joined #openstack-infra | 01:54 | |
*** esker has quit IRC | 01:54 | |
*** hdd_ has quit IRC | 01:57 | |
*** sarob has quit IRC | 02:02 | |
*** Longgeek has joined #openstack-infra | 02:03 | |
*** Qiming_ has joined #openstack-infra | 02:03 | |
*** sarob has joined #openstack-infra | 02:05 | |
*** vigneshvar has joined #openstack-infra | 02:05 | |
*** alexpilotti has quit IRC | 02:07 | |
*** alexpilotti has joined #openstack-infra | 02:08 | |
*** alexpilotti has quit IRC | 02:08 | |
*** vigneshvar_ has joined #openstack-infra | 02:08 | |
*** alexpilotti has joined #openstack-infra | 02:09 | |
*** alexpilotti has quit IRC | 02:10 | |
*** leakypipes has quit IRC | 02:11 | |
*** vigneshvar has quit IRC | 02:12 | |
*** alexpilotti_ has joined #openstack-infra | 02:14 | |
*** Longgeek has quit IRC | 02:14 | |
*** alexpilotti_ has quit IRC | 02:15 | |
*** alexpilotti has joined #openstack-infra | 02:17 | |
*** alexpilotti has quit IRC | 02:17 | |
*** alexpilotti has joined #openstack-infra | 02:18 | |
*** mmedvede has quit IRC | 02:18 | |
*** alexpilotti has quit IRC | 02:18 | |
*** alexpilotti has joined #openstack-infra | 02:20 | |
*** alexpilotti has quit IRC | 02:20 | |
*** yamahata has quit IRC | 02:22 | |
*** sputnik13 has joined #openstack-infra | 02:24 | |
*** tkelsey has joined #openstack-infra | 02:25 | |
*** niska has quit IRC | 02:26 | |
*** amitgandhinz has quit IRC | 02:29 | |
*** tkelsey has quit IRC | 02:29 | |
*** ajmiller has joined #openstack-infra | 02:34 | |
*** armax has joined #openstack-infra | 02:36 | |
*** ayoung has quit IRC | 02:36 | |
*** niska has joined #openstack-infra | 02:36 | |
*** kaisers has joined #openstack-infra | 02:37 | |
*** kaisers1 has quit IRC | 02:39 | |
*** zz_dimtruck is now known as dimtruck | 02:42 | |
*** dims_ has quit IRC | 02:42 | |
*** koolhead17 has quit IRC | 02:44 | |
*** cody-somerville has joined #openstack-infra | 02:52 | |
*** dimtruck is now known as zz_dimtruck | 02:52 | |
*** boris-42 has quit IRC | 02:52 | |
*** ayoung has joined #openstack-infra | 02:52 | |
*** harlowja is now known as harlowja_away | 02:53 | |
mtreinish | pleia2: cool. Thanks for all the help | 02:56 |
*** baoli has quit IRC | 02:57 | |
*** baoli has joined #openstack-infra | 02:57 | |
*** sdake has joined #openstack-infra | 02:58 | |
*** mmedvede has joined #openstack-infra | 03:00 | |
pleia2 | mtreinish: no problem | 03:04 |
*** harlowja_at_home has joined #openstack-infra | 03:05 | |
pleia2 | cinerama: starting at line 135 of https://etherpad.openstack.org/p/zanata-install I begain fleshing out what we'll need in subsequent commits | 03:06 |
pleia2 | now I should properly end-of-week | 03:06 |
*** harlowja_at_home has quit IRC | 03:08 | |
*** Qiming__ has joined #openstack-infra | 03:10 | |
*** Qiming_ has quit IRC | 03:13 | |
*** cody-somerville has quit IRC | 03:15 | |
*** sputnik13 has quit IRC | 03:15 | |
*** sputnik13 has joined #openstack-infra | 03:16 | |
openstackgerrit | Doug Wiegley proposed openstack-infra/project-config: Promote lbaasv2 api job to both the lbaas and neutron check and gate https://review.openstack.org/164390 | 03:16 |
openstackgerrit | Doug Wiegley proposed openstack-infra/project-config: Promote lbaasv2 api job to both the lbaas and neutron check and gate https://review.openstack.org/164390 | 03:17 |
*** achanda has quit IRC | 03:19 | |
*** achanda has joined #openstack-infra | 03:19 | |
*** sputnik13 has quit IRC | 03:22 | |
*** achanda has quit IRC | 03:24 | |
*** sputnik13 has joined #openstack-infra | 03:25 | |
*** ghostpl_ has joined #openstack-infra | 03:25 | |
*** otter768 has joined #openstack-infra | 03:29 | |
*** mmedvede has quit IRC | 03:29 | |
*** sdake has quit IRC | 03:29 | |
*** ghostpl_ has quit IRC | 03:33 | |
*** yamahata has joined #openstack-infra | 03:36 | |
*** achanda has joined #openstack-infra | 03:36 | |
*** achanda has quit IRC | 03:40 | |
*** koolhead17 has joined #openstack-infra | 03:41 | |
*** mmedvede has joined #openstack-infra | 03:54 | |
*** salv-orlando has quit IRC | 04:00 | |
*** sputnik13 has quit IRC | 04:04 | |
*** mmedvede has quit IRC | 04:06 | |
*** garyh has quit IRC | 04:09 | |
*** vigneshvar_ has quit IRC | 04:12 | |
*** ujuc has joined #openstack-infra | 04:13 | |
*** vigneshvar has joined #openstack-infra | 04:13 | |
*** Ryan_Lane has joined #openstack-infra | 04:15 | |
*** vigneshvar has quit IRC | 04:15 | |
*** vigneshvar has joined #openstack-infra | 04:15 | |
*** Ryan_Lane has quit IRC | 04:17 | |
*** vigneshvar has quit IRC | 04:17 | |
*** vigneshvar has joined #openstack-infra | 04:17 | |
*** harlowja_at_home has joined #openstack-infra | 04:18 | |
*** harlowja_at_home has quit IRC | 04:18 | |
*** yamahata has quit IRC | 04:19 | |
*** sputnik13 has joined #openstack-infra | 04:20 | |
*** SumitNaiksatam has joined #openstack-infra | 04:21 | |
*** ddieterly has quit IRC | 04:22 | |
*** otter768 has quit IRC | 04:23 | |
*** hdd_ has joined #openstack-infra | 04:24 | |
*** ayoung has quit IRC | 04:28 | |
*** mmedvede has joined #openstack-infra | 04:29 | |
*** Sukhdev has joined #openstack-infra | 04:29 | |
*** stevemar has joined #openstack-infra | 04:35 | |
openstackgerrit | Matthew Treinish proposed openstack-infra/system-config: WIP: Add docs for subunit2sql https://review.openstack.org/164397 | 04:37 |
*** salv-orlando has joined #openstack-infra | 05:02 | |
*** mmedvede has quit IRC | 05:04 | |
*** reed has quit IRC | 05:06 | |
*** ujuc has quit IRC | 05:08 | |
*** salv-orlando has quit IRC | 05:10 | |
*** ghostpl_ has joined #openstack-infra | 05:13 | |
*** ghostpl_ has quit IRC | 05:20 | |
*** ddieterly has joined #openstack-infra | 05:23 | |
*** ddieterly has quit IRC | 05:27 | |
*** dhritishikhar has joined #openstack-infra | 05:30 | |
*** mmedvede has joined #openstack-infra | 05:32 | |
*** xyang1 has quit IRC | 05:33 | |
*** salv-orlando has joined #openstack-infra | 05:34 | |
*** salv-orlando has quit IRC | 05:37 | |
*** signed8bit_ZZZzz is now known as signed8bit | 05:40 | |
*** signed8bit is now known as signed8bit_ZZZzz | 05:40 | |
*** harlowja_away has quit IRC | 05:41 | |
*** vigneshvar has quit IRC | 05:41 | |
*** signed8bit_ZZZzz is now known as signed8bit | 05:42 | |
*** signed8bit is now known as signed8bit_ZZZzz | 05:42 | |
*** baoli has quit IRC | 05:52 | |
*** salv-orlando has joined #openstack-infra | 06:04 | |
*** salv-orlando has quit IRC | 06:08 | |
*** sabeen has joined #openstack-infra | 06:08 | |
*** mmedvede has quit IRC | 06:09 | |
*** dhritishikhar has quit IRC | 06:14 | |
*** garyh has joined #openstack-infra | 06:20 | |
*** otter768 has joined #openstack-infra | 06:24 | |
*** ddieterly has joined #openstack-infra | 06:24 | |
*** tkelsey has joined #openstack-infra | 06:26 | |
*** uvirtbot has joined #openstack-infra | 06:26 | |
*** mmedvede has joined #openstack-infra | 06:28 | |
*** otter768 has quit IRC | 06:28 | |
*** ddieterly has quit IRC | 06:28 | |
*** Sukhdev has quit IRC | 06:29 | |
*** tkelsey has quit IRC | 06:31 | |
*** sarob has quit IRC | 06:43 | |
*** sarob has joined #openstack-infra | 06:44 | |
*** sarob has quit IRC | 06:45 | |
*** sarob has joined #openstack-infra | 06:45 | |
*** hdd_ has quit IRC | 06:48 | |
*** sarob has quit IRC | 06:49 | |
*** dhritishikhar has joined #openstack-infra | 06:52 | |
*** mmedvede has quit IRC | 06:53 | |
*** dhritishikhar has quit IRC | 06:57 | |
*** stevemar has quit IRC | 07:02 | |
*** mmedvede has joined #openstack-infra | 07:03 | |
*** ghostpl_ has joined #openstack-infra | 07:05 | |
*** Qiming__ is now known as Qiming | 07:09 | |
*** ghostpl_ has quit IRC | 07:15 | |
*** mmedvede has quit IRC | 07:22 | |
*** tim_o has quit IRC | 07:25 | |
*** ddieterly has joined #openstack-infra | 07:26 | |
*** dhritishikhar has joined #openstack-infra | 07:29 | |
*** koolhead17 has quit IRC | 07:30 | |
*** ddieterly has quit IRC | 07:30 | |
*** Longgeek has joined #openstack-infra | 07:30 | |
*** salv-orlando has joined #openstack-infra | 07:33 | |
*** achanda has joined #openstack-infra | 07:33 | |
*** mmedvede has joined #openstack-infra | 07:39 | |
*** salv-orlando has quit IRC | 07:43 | |
*** tsg has joined #openstack-infra | 07:44 | |
*** koolhead17 has joined #openstack-infra | 07:44 | |
*** koolhead17 has quit IRC | 07:44 | |
*** koolhead17 has joined #openstack-infra | 07:44 | |
*** sarob has joined #openstack-infra | 07:46 | |
*** sarob has quit IRC | 07:51 | |
*** Qiming_ has joined #openstack-infra | 07:51 | |
*** mmedvede has quit IRC | 07:52 | |
*** Qiming has quit IRC | 07:53 | |
*** koolhead17 is now known as koolhead11 | 07:56 | |
*** koolhead11 is now known as koolhead17 | 07:57 | |
*** dhritishikhar has quit IRC | 07:58 | |
*** amotoki has joined #openstack-infra | 08:00 | |
*** achanda has quit IRC | 08:02 | |
openstackgerrit | Merged openstack-infra/project-config: Modifying devstack plugin job template https://review.openstack.org/163323 | 08:04 |
*** bhunter71 has quit IRC | 08:05 | |
*** sabeen has quit IRC | 08:05 | |
*** amotoki has quit IRC | 08:07 | |
*** links has joined #openstack-infra | 08:09 | |
*** angela-s has quit IRC | 08:11 | |
*** salv-orlando has joined #openstack-infra | 08:14 | |
*** achanda has joined #openstack-infra | 08:17 | |
*** matrohon has joined #openstack-infra | 08:19 | |
*** Qiming__ has joined #openstack-infra | 08:21 | |
*** salv-orlando has quit IRC | 08:21 | |
*** Qiming_ has quit IRC | 08:24 | |
*** otter768 has joined #openstack-infra | 08:25 | |
*** ddieterly has joined #openstack-infra | 08:26 | |
*** otter768 has quit IRC | 08:29 | |
*** ddieterly has quit IRC | 08:31 | |
*** salv-orlando has joined #openstack-infra | 08:37 | |
*** achanda has quit IRC | 08:38 | |
*** achanda has joined #openstack-infra | 08:43 | |
*** salv-orlando has quit IRC | 08:45 | |
*** salv-orlando has joined #openstack-infra | 08:55 | |
*** achanda has quit IRC | 08:56 | |
*** dhritishikhar has joined #openstack-infra | 08:56 | |
*** ghostpl_ has joined #openstack-infra | 08:57 | |
*** tsg has quit IRC | 08:58 | |
*** salv-orlando has quit IRC | 08:59 | |
*** Longgeek has quit IRC | 09:00 | |
*** Longgeek has joined #openstack-infra | 09:01 | |
*** luqas has joined #openstack-infra | 09:02 | |
*** jkt has quit IRC | 09:03 | |
*** luqas has quit IRC | 09:03 | |
*** ghostpl_ has quit IRC | 09:04 | |
*** salv-orlando has joined #openstack-infra | 09:10 | |
*** jkt has joined #openstack-infra | 09:10 | |
*** Qiming_ has joined #openstack-infra | 09:11 | |
*** Qiming__ has quit IRC | 09:14 | |
*** salv-orlando has quit IRC | 09:17 | |
*** ddieterly has joined #openstack-infra | 09:27 | |
*** ddieterly has quit IRC | 09:32 | |
*** links has quit IRC | 09:38 | |
*** Somay has joined #openstack-infra | 09:41 | |
*** ashishb has joined #openstack-infra | 10:00 | |
*** tnovacik has joined #openstack-infra | 10:01 | |
*** Somay has quit IRC | 10:12 | |
*** jgrimm- is now known as zz_jgrimm- | 10:18 | |
*** otter768 has joined #openstack-infra | 10:26 | |
*** Somay has joined #openstack-infra | 10:27 | |
*** ddieterly has joined #openstack-infra | 10:28 | |
*** pblaho has joined #openstack-infra | 10:29 | |
*** pblaho has quit IRC | 10:30 | |
*** otter768 has quit IRC | 10:30 | |
*** sputnik13 has quit IRC | 10:32 | |
*** ddieterly has quit IRC | 10:32 | |
*** salv-orlando has joined #openstack-infra | 10:32 | |
*** Somay has quit IRC | 10:42 | |
*** salv-orlando has quit IRC | 10:42 | |
*** salv-orlando has joined #openstack-infra | 10:46 | |
*** ghostpl_ has joined #openstack-infra | 10:48 | |
*** sarob has joined #openstack-infra | 10:49 | |
openstackgerrit | yolanda.robla proposed openstack-infra/system-config: Expose jenkins_gitfullname and jenkins_gitemail https://review.openstack.org/161695 | 10:49 |
*** salv-orlando has quit IRC | 10:54 | |
*** sarob has quit IRC | 10:55 | |
*** ghostpl_ has quit IRC | 10:55 | |
*** andreykurilin_ has joined #openstack-infra | 10:58 | |
*** Qiming__ has joined #openstack-infra | 11:07 | |
*** Qiming_ has quit IRC | 11:11 | |
*** ujuc has joined #openstack-infra | 11:13 | |
*** Somay has joined #openstack-infra | 11:15 | |
*** salv-orlando has joined #openstack-infra | 11:16 | |
*** salv-orlando has quit IRC | 11:19 | |
*** salv-orlando has joined #openstack-infra | 11:25 | |
*** ashishb has quit IRC | 11:25 | |
*** ashishb has joined #openstack-infra | 11:26 | |
*** ddieterly has joined #openstack-infra | 11:28 | |
*** salv-orlando has quit IRC | 11:29 | |
*** andreykurilin_ has quit IRC | 11:30 | |
*** andreykurilin_ has joined #openstack-infra | 11:30 | |
*** ddieterly has quit IRC | 11:33 | |
*** salv-orlando has joined #openstack-infra | 11:33 | |
*** salv-orlando has quit IRC | 11:41 | |
*** Longgeek has quit IRC | 11:41 | |
*** ashishb has quit IRC | 11:41 | |
*** Qiming_ has joined #openstack-infra | 11:46 | |
*** Longgeek has joined #openstack-infra | 11:46 | |
*** Qiming__ has quit IRC | 11:49 | |
*** salv-orlando has joined #openstack-infra | 11:54 | |
*** ddieterly has joined #openstack-infra | 11:59 | |
*** ujuc has quit IRC | 12:00 | |
*** bhunter71 has joined #openstack-infra | 12:00 | |
*** salv-orlando has quit IRC | 12:02 | |
*** vigneshvar has joined #openstack-infra | 12:03 | |
*** tnovacik has quit IRC | 12:07 | |
*** vigneshvar has quit IRC | 12:09 | |
*** amotoki has joined #openstack-infra | 12:12 | |
*** dhritishikhar has quit IRC | 12:16 | |
*** HeOS has quit IRC | 12:17 | |
*** ghostpl_ has joined #openstack-infra | 12:21 | |
*** otter768 has joined #openstack-infra | 12:27 | |
*** tkelsey has joined #openstack-infra | 12:28 | |
*** ghostpl_ has quit IRC | 12:29 | |
*** Somay has quit IRC | 12:31 | |
*** otter768 has quit IRC | 12:31 | |
*** tkelsey has quit IRC | 12:33 | |
*** nelsnelson has joined #openstack-infra | 12:34 | |
openstackgerrit | Antoine Musso proposed openstack-infra/git-review: pbr should install the manpage https://review.openstack.org/132203 | 12:38 |
openstackgerrit | Antoine Musso proposed openstack-infra/git-review: pbr should install the manpage https://review.openstack.org/132203 | 12:38 |
openstackgerrit | Antoine Musso proposed openstack-infra/git-review: pbr should install the manpage https://review.openstack.org/132203 | 12:40 |
*** nelsnelson has quit IRC | 12:40 | |
*** Longgeek has quit IRC | 12:41 | |
*** dimsum__ has joined #openstack-infra | 12:43 | |
*** chlong has quit IRC | 12:46 | |
*** Longgeek has joined #openstack-infra | 12:48 | |
*** boris-42 has joined #openstack-infra | 12:50 | |
*** dimsum__ has quit IRC | 12:52 | |
*** chlong has joined #openstack-infra | 12:58 | |
*** mrmartin has joined #openstack-infra | 13:01 | |
*** baoli has joined #openstack-infra | 13:04 | |
*** baoli has quit IRC | 13:04 | |
fungi | mordred: if you're around and haven't seen https://github.com/pypa/pip/pull/2535 ... | 13:06 |
mordred | fungi: thanks! | 13:10 |
mordred | fungi: certainly looks like something important | 13:10 |
*** nelsnelson has joined #openstack-infra | 13:10 | |
*** mrmartin has quit IRC | 13:16 | |
*** Longgeek has quit IRC | 13:21 | |
*** baoli has joined #openstack-infra | 13:23 | |
*** baoli has quit IRC | 13:24 | |
*** jklare has quit IRC | 13:28 | |
*** Longgeek has joined #openstack-infra | 13:32 | |
*** nelsnelson has quit IRC | 13:34 | |
*** jklare has joined #openstack-infra | 13:35 | |
*** spzala has joined #openstack-infra | 13:43 | |
*** baoli has joined #openstack-infra | 13:49 | |
*** BharatK has quit IRC | 13:49 | |
*** BharatK has joined #openstack-infra | 13:51 | |
*** dimsum__ has joined #openstack-infra | 13:53 | |
*** Qiming__ has joined #openstack-infra | 13:54 | |
*** pcaruana has joined #openstack-infra | 13:55 | |
*** mrmartin has joined #openstack-infra | 13:55 | |
*** Qiming_ has quit IRC | 13:57 | |
*** dimsum__ has quit IRC | 13:58 | |
*** ujuc has joined #openstack-infra | 14:02 | |
*** koolhead_ has joined #openstack-infra | 14:06 | |
openstackgerrit | MORITA Kazutaka proposed openstack-infra/project-config: Add non-voting Sheepdog test job to cinder check pipeline https://review.openstack.org/153868 | 14:07 |
*** koolhead17 has quit IRC | 14:08 | |
*** koolhead_ has quit IRC | 14:10 | |
*** ghostpl_ has joined #openstack-infra | 14:13 | |
*** koolhead17 has joined #openstack-infra | 14:14 | |
*** ghostpl_ has quit IRC | 14:21 | |
*** ChuckC has quit IRC | 14:23 | |
*** otter768 has joined #openstack-infra | 14:27 | |
*** bhunter71 has quit IRC | 14:31 | |
*** otter768 has quit IRC | 14:32 | |
*** vryzhenkin has quit IRC | 14:46 | |
*** andreykurilin_ has quit IRC | 14:48 | |
*** subscope has joined #openstack-infra | 14:52 | |
*** freerunner has joined #openstack-infra | 15:00 | |
openstackgerrit | Merged openstack-infra/git-review: pbr should install the manpage https://review.openstack.org/132203 | 15:05 |
*** ajmiller has quit IRC | 15:15 | |
zxiiro | In JJB what's the rule of thumb for naming variables? is it preferable to name it what the XML says or what the configuration page in Jenkins said? | 15:15 |
jeblair | zxiiro: the configuration page -- to make it easier for users | 15:17 |
*** ajmiller has joined #openstack-infra | 15:17 | |
zxiiro | jeblair: thanks, I'm adding support for a new plugin but the XML and Configuration differs quite vastely so I wasn't sure | 15:17 |
*** dhritishikhar has joined #openstack-infra | 15:17 | |
zxiiro | for example "<billOfMaterialsToken>" while in the configuration screen it called it "Application Name" | 15:18 |
*** freerunner has quit IRC | 15:21 | |
jeblair | ha! yeah, that's a bit different. :) i think i would know what to put in application name. i am not sure i would know how to provide a bill of materials token. | 15:22 |
*** freerunner has joined #openstack-infra | 15:26 | |
SpamapS | jeblair: what? You don't know how to set us up the BOM? | 15:30 |
*** koolhead17 has quit IRC | 15:30 | |
jeblair | SpamapS: Main screen turn on? | 15:31 |
*** ghostpl_ has joined #openstack-infra | 15:31 | |
*** ihrachyshka has joined #openstack-infra | 15:32 | |
fungi | bwahahaha at SpamapS | 15:35 |
*** bknudson has joined #openstack-infra | 15:35 | |
fungi | (for great justice) | 15:35 |
SpamapS | all your Jenkins are belong to jjb | 15:38 |
*** ghostpl_ has quit IRC | 15:38 | |
*** BharatK has quit IRC | 15:40 | |
*** carl_baldwin has joined #openstack-infra | 15:44 | |
*** baoli has quit IRC | 15:49 | |
*** tnovacik has joined #openstack-infra | 15:49 | |
*** ekarlso has quit IRC | 15:50 | |
*** ekarlso has joined #openstack-infra | 15:50 | |
*** baoli has joined #openstack-infra | 15:50 | |
*** signed8bit_ZZZzz is now known as signed8bit | 15:53 | |
*** dhritishikhar has quit IRC | 15:53 | |
*** anthonyper has quit IRC | 15:53 | |
*** signed8bit is now known as signed8bit_ZZZzz | 15:53 | |
*** anthonyper has joined #openstack-infra | 15:54 | |
*** _nadya_ has joined #openstack-infra | 15:57 | |
*** e0ne has joined #openstack-infra | 15:57 | |
*** e0ne is now known as e0ne_ | 15:58 | |
*** armax has quit IRC | 15:58 | |
*** e0ne_ is now known as e0ne | 15:59 | |
rhe00 | seems like the subunit2sql changes is still breaking the third party nodepool scripts: http://paste.openstack.org/show/192310/ | 16:01 |
*** koolhead17 has joined #openstack-infra | 16:02 | |
*** mpaolino has joined #openstack-infra | 16:04 | |
*** Qiming__ has quit IRC | 16:05 | |
*** bswartz has quit IRC | 16:06 | |
*** Longgeek has quit IRC | 16:06 | |
*** reed has joined #openstack-infra | 16:15 | |
*** ddieterly has quit IRC | 16:16 | |
*** mrmartin has quit IRC | 16:18 | |
*** mpaolino has quit IRC | 16:21 | |
*** mpaolino has joined #openstack-infra | 16:21 | |
*** bhunter71 has joined #openstack-infra | 16:22 | |
*** yfried|afk has joined #openstack-infra | 16:25 | |
zxiiro | jeblair: another interesting one. What if XML has options that are not available to the Jenkins Configuration screen? | 16:25 |
zxiiro | should i support it? | 16:25 |
SpamapS | hrm, I have an interesting conundrum that I've run into before | 16:26 |
SpamapS | I want to test using gear.Server, and ideally I'd do so with a fixture | 16:26 |
SpamapS | a fixture that would be useful to anyone wanting to test with gear.Server... | 16:27 |
SpamapS | so do we ship that in gear's pip package? If so, do we add testtools and fixtures to gear's runtime reqs? | 16:27 |
*** paul-- has quit IRC | 16:27 | |
*** otter768 has joined #openstack-infra | 16:29 | |
*** _nadya_ has quit IRC | 16:32 | |
*** boris-42 has quit IRC | 16:32 | |
*** otter768 has quit IRC | 16:33 | |
*** paul-- has joined #openstack-infra | 16:33 | |
openstackgerrit | Jesse DeFer proposed openstack-infra/jenkins-job-builder: Add 'Job Log Logger' wrapper https://review.openstack.org/164338 | 16:33 |
*** ddieterly has joined #openstack-infra | 16:37 | |
*** pcaruana has quit IRC | 16:38 | |
*** andreykurilin_ has joined #openstack-infra | 16:39 | |
*** yfried|afk has quit IRC | 16:42 | |
SpamapS | oh wow I just learned that if you bind to port == 0 you get a random listen and can find it out through getsockname() | 16:43 |
* SpamapS withdraws need for fixture | 16:43 | |
jeblair | SpamapS: that's how the zuul tests use the gear server (so it works in parallel) | 16:44 |
jeblair | zxiiro: you may not want to support extra options since they won't be documented, and may change in later versions | 16:45 |
*** bhunter71 has quit IRC | 16:46 | |
*** _nadya_ has joined #openstack-infra | 16:48 | |
*** sarob has joined #openstack-infra | 16:56 | |
*** andreykurilin_ has quit IRC | 16:57 | |
SpamapS | jeblair: yeah I was wondering how they use it and starting to write a randomizer and then like "hey whats this 0 port thing?" | 17:00 |
SpamapS | jeblair: TIL :) | 17:00 |
zxiiro | jeblair: ok | 17:01 |
*** sarob has quit IRC | 17:01 | |
*** zz_dimtruck is now known as dimtruck | 17:03 | |
*** hdd has joined #openstack-infra | 17:04 | |
*** mpaolino has quit IRC | 17:09 | |
*** reed has quit IRC | 17:09 | |
*** dimsum__ has joined #openstack-infra | 17:10 | |
*** asselin_ has joined #openstack-infra | 17:11 | |
*** dimsum__ has quit IRC | 17:14 | |
fungi | SpamapS: it's in general a great idea for parallelized tests where you may have some arbitrary number of processes which want a listening socket (such as functional tests for a daemon) | 17:18 |
*** trey has quit IRC | 17:19 | |
*** _nadya_ has joined #openstack-infra | 17:20 | |
*** trey has joined #openstack-infra | 17:20 | |
*** koolhead17 has quit IRC | 17:22 | |
*** ghostpl_ has joined #openstack-infra | 17:23 | |
*** yfried|afk has joined #openstack-infra | 17:24 | |
*** _nadya_ has quit IRC | 17:28 | |
mordred | SpamapS: that said - I think if you _did_ want to write a fixture that was reusable such as you were talking about | 17:30 |
openstackgerrit | Thanh Ha proposed openstack-infra/jenkins-job-builder: Add support for Sonatype CLM plugin https://review.openstack.org/164446 | 17:30 |
mordred | putting it in gear would be a fine thing to do - but I don't think you need to put it in to gear's requirements.txt | 17:30 |
zxiiro | yay another plugin supported :) | 17:30 |
mordred | if someone wants to consume a fixture, chances are they'll have installed fixtures themselves | 17:30 |
*** ghostpl_ has quit IRC | 17:31 | |
*** jamesmcarthur has joined #openstack-infra | 17:31 | |
openstackgerrit | Jeremy Stanley proposed openstack-infra/project-config: Add fallback bindep manifest https://review.openstack.org/164447 | 17:32 |
*** yfried|afk has quit IRC | 17:38 | |
openstackgerrit | Thanh Ha proposed openstack-infra/jenkins-job-builder: Add support for Sonatype CLM plugin https://review.openstack.org/164446 | 17:40 |
openstackgerrit | Thanh Ha proposed openstack-infra/jenkins-job-builder: Add support for Sonatype CLM plugin https://review.openstack.org/164446 | 17:43 |
*** dimtruck is now known as zz_dimtruck | 17:46 | |
*** carl_baldwin has quit IRC | 17:49 | |
openstackgerrit | greghaynes proposed openstack-infra/nodepool: Check image-list output in cmd tests https://review.openstack.org/164356 | 17:49 |
openstackgerrit | Peter Hamilton proposed openstack/requirements: Update PyKMIP version in requirements https://review.openstack.org/164449 | 17:49 |
*** Hal has joined #openstack-infra | 17:51 | |
*** Hal is now known as Guest89216 | 17:52 | |
*** sarob has joined #openstack-infra | 17:57 | |
*** Guest89216 has quit IRC | 17:58 | |
*** sarob has quit IRC | 18:02 | |
*** skraynev has quit IRC | 18:02 | |
*** jamesmcarthur has quit IRC | 18:03 | |
*** carl_baldwin has joined #openstack-infra | 18:03 | |
*** skraynev has joined #openstack-infra | 18:04 | |
*** sdake has joined #openstack-infra | 18:05 | |
*** signed8bit_ZZZzz is now known as signed8bit | 18:06 | |
*** hdd has quit IRC | 18:06 | |
*** signed8bit is now known as signed8bit_ZZZzz | 18:07 | |
*** sdake has quit IRC | 18:09 | |
*** carl_baldwin has quit IRC | 18:11 | |
*** sarob has joined #openstack-infra | 18:12 | |
*** mrmartin has joined #openstack-infra | 18:13 | |
openstackgerrit | Emilien Macchi proposed openstack-infra/project-config: zuul: add check-grenade-dsvm-neutron to tempest checks https://review.openstack.org/164451 | 18:14 |
EmilienM | mtreinish: ^ | 18:14 |
*** ashishb has joined #openstack-infra | 18:14 | |
*** jamesmcarthur has joined #openstack-infra | 18:17 | |
*** pcrews has quit IRC | 18:21 | |
*** achanda has joined #openstack-infra | 18:21 | |
*** ashishb1 has joined #openstack-infra | 18:23 | |
*** ashishb has quit IRC | 18:23 | |
*** pcrews has joined #openstack-infra | 18:24 | |
*** ghostpl_ has joined #openstack-infra | 18:26 | |
*** sarob has quit IRC | 18:29 | |
*** otter768 has joined #openstack-infra | 18:29 | |
*** tkelsey has joined #openstack-infra | 18:31 | |
*** otter768 has quit IRC | 18:34 | |
*** ghostpl_ has quit IRC | 18:34 | |
*** sarob has joined #openstack-infra | 18:35 | |
*** tkelsey has quit IRC | 18:35 | |
*** jamesmcarthur has quit IRC | 18:35 | |
*** Somay has joined #openstack-infra | 18:37 | |
*** jamesmcarthur has joined #openstack-infra | 18:38 | |
Somay | Hi all! Any commiters, please review my patch here - https://review.openstack.org/#/c/163137/ | 18:41 |
*** sarob has quit IRC | 18:44 | |
*** sarob has joined #openstack-infra | 18:45 | |
*** matrohon has quit IRC | 18:50 | |
*** sarob has quit IRC | 18:53 | |
*** funzo has quit IRC | 18:56 | |
*** Somay has quit IRC | 18:57 | |
*** funzo has joined #openstack-infra | 18:58 | |
*** mjturek1 has joined #openstack-infra | 19:00 | |
*** sarob has joined #openstack-infra | 19:03 | |
*** Somay has joined #openstack-infra | 19:06 | |
*** sarob has quit IRC | 19:08 | |
*** e0ne has quit IRC | 19:11 | |
*** chlong has quit IRC | 19:11 | |
*** tsg has joined #openstack-infra | 19:17 | |
*** tsg_ has joined #openstack-infra | 19:17 | |
*** tsg_ has quit IRC | 19:17 | |
*** Somay has quit IRC | 19:19 | |
*** _nadya_ has joined #openstack-infra | 19:22 | |
*** achanda has quit IRC | 19:22 | |
*** bswartz has joined #openstack-infra | 19:29 | |
*** btran has quit IRC | 19:30 | |
*** ghostpl_ has joined #openstack-infra | 19:30 | |
*** kirshil has quit IRC | 19:30 | |
*** koolhead17 has joined #openstack-infra | 19:30 | |
*** ghostpl_ has quit IRC | 19:36 | |
*** HeOS has joined #openstack-infra | 19:40 | |
*** e0ne has joined #openstack-infra | 19:41 | |
*** tiswanso has joined #openstack-infra | 19:45 | |
*** _nadya_ has quit IRC | 19:51 | |
*** tiswanso_ has joined #openstack-infra | 19:51 | |
*** tiswanso has quit IRC | 19:54 | |
*** _nadya_ has joined #openstack-infra | 19:59 | |
*** adalbas has quit IRC | 20:04 | |
*** jamesmcarthur has quit IRC | 20:07 | |
*** andreykurilin_ has joined #openstack-infra | 20:07 | |
*** funzo has quit IRC | 20:08 | |
*** funzo has joined #openstack-infra | 20:09 | |
*** achanda has joined #openstack-infra | 20:11 | |
*** dimsum__ has joined #openstack-infra | 20:12 | |
*** funzo has quit IRC | 20:13 | |
*** andreykurilin_ has quit IRC | 20:13 | |
*** andreykurilin_ has joined #openstack-infra | 20:14 | |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Load in nanliu/git module https://review.openstack.org/164355 | 20:14 |
*** dimsum__ has quit IRC | 20:17 | |
openstackgerrit | Spencer Krum proposed openstack-infra/puppet-jenkins: Use @varname to supress warnings https://review.openstack.org/163650 | 20:17 |
*** weshay has quit IRC | 20:18 | |
*** yfried|afk has joined #openstack-infra | 20:19 | |
*** ddieterly has quit IRC | 20:24 | |
openstackgerrit | Spencer Krum proposed openstack-infra/system-config: Refactor o_p::base into o_p::template https://review.openstack.org/162830 | 20:24 |
greghaynes | clarkb: cant tell what happened with this coverage job http://logs.openstack.org/56/164356/2/check/nodepool-coverage/4e5ec18/ | 20:26 |
*** SumitNaiksatam has quit IRC | 20:26 | |
clarkb | swift logs probably broke it | 20:27 |
greghaynes | but what will I do without the fancy coverage report web ui? | 20:28 |
clarkb | well we should fix it | 20:29 |
*** otter768 has joined #openstack-infra | 20:30 | |
*** e0ne has quit IRC | 20:31 | |
*** achanda has quit IRC | 20:32 | |
*** ashishb1 has quit IRC | 20:32 | |
*** andreykurilin_ has quit IRC | 20:33 | |
*** otter768 has quit IRC | 20:35 | |
*** ildikov has quit IRC | 20:45 | |
*** ddieterly has joined #openstack-infra | 20:46 | |
*** ddieterl_ has joined #openstack-infra | 20:46 | |
*** ddieterly has quit IRC | 20:46 | |
*** jamesmcarthur has joined #openstack-infra | 20:54 | |
*** otter768 has joined #openstack-infra | 20:54 | |
*** tnovacik has quit IRC | 20:55 | |
*** carl_baldwin has joined #openstack-infra | 20:55 | |
*** mwagner_lap has quit IRC | 21:01 | |
*** carl_baldwin has quit IRC | 21:02 | |
*** SumitNaiksatam has joined #openstack-infra | 21:02 | |
*** achanda has joined #openstack-infra | 21:07 | |
*** tiswanso_ has quit IRC | 21:10 | |
*** funzo has joined #openstack-infra | 21:10 | |
*** jamesmcarthur has quit IRC | 21:10 | |
*** SumitNaiksatam_ has joined #openstack-infra | 21:13 | |
*** mrmartin has quit IRC | 21:14 | |
*** funzo has quit IRC | 21:15 | |
*** SumitNaiksatam has quit IRC | 21:17 | |
*** SumitNaiksatam_ is now known as SumitNaiksatam | 21:17 | |
*** SumitNaiksatam has quit IRC | 21:20 | |
*** ghostpl_ has joined #openstack-infra | 21:21 | |
*** SumitNaiksatam has joined #openstack-infra | 21:21 | |
*** _nadya_ has quit IRC | 21:23 | |
*** SumitNaiksatam has quit IRC | 21:23 | |
*** SumitNaiksatam has joined #openstack-infra | 21:25 | |
*** ghostpl_ has quit IRC | 21:28 | |
*** jamesmcarthur has joined #openstack-infra | 21:32 | |
*** achanda has quit IRC | 21:33 | |
*** achanda has joined #openstack-infra | 21:34 | |
*** achanda has quit IRC | 21:34 | |
*** dimsum__ has joined #openstack-infra | 21:37 | |
*** nelsnelson has joined #openstack-infra | 21:37 | |
*** masayukig has quit IRC | 21:37 | |
*** masayukig has joined #openstack-infra | 21:43 | |
*** otter768 has quit IRC | 21:44 | |
*** dimsum__ has quit IRC | 21:47 | |
*** jamesmcarthur has quit IRC | 21:50 | |
*** r-daneel has joined #openstack-infra | 22:00 | |
*** tnovacik has joined #openstack-infra | 22:00 | |
*** achanda has joined #openstack-infra | 22:03 | |
*** r-daneel has quit IRC | 22:05 | |
*** achanda has quit IRC | 22:08 | |
*** baoli has quit IRC | 22:08 | |
*** baoli has joined #openstack-infra | 22:09 | |
*** stevemar has joined #openstack-infra | 22:09 | |
*** koolhead17 has quit IRC | 22:11 | |
*** jamesmcarthur has joined #openstack-infra | 22:16 | |
*** jamesmcarthur has quit IRC | 22:17 | |
SpamapS | mordred: excellent point about the fact that one can leave it out of the runtime reqs but still import fixtures. | 22:20 |
*** hdd has joined #openstack-infra | 22:21 | |
*** saper has quit IRC | 22:22 | |
*** saper has joined #openstack-infra | 22:22 | |
*** tnovacik has quit IRC | 22:30 | |
*** tkelsey has joined #openstack-infra | 22:32 | |
lifeless | mordred: SpamapS: btw fixtures is intended as a production (e.g. not just Test) library, and its dep chain reflects that IIRC - so it should be non-contentious to put it in a requirements. | 22:35 |
lifeless | mordred: SpamapS: further, as fixtures are context managers, there's no reason someone using a fixture would have fixtures installed for another reason. | 22:35 |
*** tkelsey has quit IRC | 22:36 | |
SpamapS | lifeless: I know I wouldn't mind having testtools on production, but some might question that. | 22:36 |
SpamapS | IMO code that tests itself in production is a win. :) | 22:36 |
SpamapS | but there's hard liners who think unit tests are over there, and everything else is over here. | 22:37 |
* fungi tests himself in production | 22:37 | |
lifeless | SpamapS: fixtures shouldn't depened on testtools | 22:39 |
*** achanda has joined #openstack-infra | 22:39 | |
SpamapS | clint@clint-HP:~/src/openstack-infra/gear/.tox/py27/lib/python2.7/site-packages/fixtures-1.0.0-py2.7.egg-info$ cat requires.txt | 22:39 |
SpamapS | testtools>=0.9.22 | 22:39 |
lifeless | yes, it does | 22:41 |
lifeless | thats old, needs to depend on extras instead | 22:41 |
*** ZZelle has joined #openstack-infra | 22:42 | |
*** ZZelle has quit IRC | 22:42 | |
lifeless | it uses 'advance_iterator', reraise and try_improts | 22:42 |
SpamapS | ah well there you go.. bugs found :) | 22:42 |
lifeless | I think they are all variously available in extras + six now. | 22:42 |
lifeless | SpamapS: please file a bug on fixtures (pad.lv/python-fixtures) | 22:43 |
*** e0ne has joined #openstack-infra | 22:45 | |
*** achanda has quit IRC | 22:47 | |
*** dimsum__ has joined #openstack-infra | 22:48 | |
SpamapS | lifeless: https://bugs.launchpad.net/python-fixtures/+bug/1432255 | 22:49 |
openstack | Launchpad bug 1432255 in Python Fixtures "requires testtools -- should only need extras" [Undecided,New] | 22:49 |
uvirtbot | Launchpad bug 1432255 in python-fixtures "requires testtools -- should only need extras" [Undecided,New] | 22:49 |
uvirtbot | Launchpad bug 1432255 in python-fixtures "requires testtools -- should only need extras" [Undecided,New] https://launchpad.net/bugs/1432255 | 22:49 |
SpamapS | ruhroh | 22:49 |
SpamapS | we need to kick one of those out. ;) | 22:49 |
*** julim has joined #openstack-infra | 22:51 | |
*** dimsum__ has quit IRC | 22:52 | |
*** hdd has quit IRC | 22:56 | |
*** andreykurilin_ has joined #openstack-infra | 22:57 | |
*** achanda has joined #openstack-infra | 23:01 | |
greghaynes | wow, that was almost hilarious | 23:04 |
*** dmellado has quit IRC | 23:04 | |
greghaynes | just dont paste a bug with a bug url in the main description | 23:04 |
*** dmellado has joined #openstack-infra | 23:05 | |
SpamapS | bot fight! | 23:10 |
SpamapS | http://www.inewidea.com/wp-content/uploads/2007/12/image0131.jpg | 23:11 |
*** ghostpl_ has joined #openstack-infra | 23:12 | |
fungi | i'm hesitant to akick uvirtbot, but next time someone sees soren around let's give him the list of channels the openstack meetbot is inhabiting so he can scrub them from his config | 23:14 |
*** ihrachyshka has quit IRC | 23:15 | |
*** Somay has joined #openstack-infra | 23:15 | |
*** dimsum__ has joined #openstack-infra | 23:16 | |
*** ghostpl_ has quit IRC | 23:16 | |
*** Somay has quit IRC | 23:17 | |
EmilienM | fungi: if you can have an eye on https://review.openstack.org/#/c/164451/ , it mays be important to have thing job in tempest too | 23:18 |
*** sputnik13 has joined #openstack-infra | 23:18 | |
*** chlong has joined #openstack-infra | 23:20 | |
*** matrohon has joined #openstack-infra | 23:23 | |
*** Somay has joined #openstack-infra | 23:23 | |
*** armax has joined #openstack-infra | 23:25 | |
*** Somay has quit IRC | 23:27 | |
*** nelsnelson has quit IRC | 23:30 | |
*** yamahata has joined #openstack-infra | 23:32 | |
*** penguinRaider has joined #openstack-infra | 23:33 | |
*** bhunter71 has joined #openstack-infra | 23:35 | |
*** nelsnelson has joined #openstack-infra | 23:36 | |
*** funzo has joined #openstack-infra | 23:41 | |
*** otter768 has joined #openstack-infra | 23:45 | |
*** funzo has quit IRC | 23:45 | |
*** bhunter71 has quit IRC | 23:45 | |
*** achanda has quit IRC | 23:47 | |
*** otter768 has quit IRC | 23:49 | |
*** andreykurilin_ has quit IRC | 23:58 | |
*** amotoki has quit IRC | 23:58 | |
*** EmilienM is now known as EmilienM|afk | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!