clarkb | use it to show it fixes the problem then fix it properly | 00:00 |
---|---|---|
openstackgerrit | greghaynes proposed openstack-infra/project-config: Support custom static nameserver during build https://review.openstack.org/157554 | 00:00 |
harlowja | https://github.com/harlowja/pippin/blob/future/pippin.py#L461 (graph stuffs, ha) | 00:00 |
clarkb | harlowja: so if you wanted a test case go install openstack icehouse with pippin right now :) | 00:00 |
clarkb | harlowja: it should throw an error | 00:00 |
harlowja | ya, that requires me to more further expand the resolving phase | 00:00 |
dstufft | fungi: oh goody | 00:00 |
dstufft | I'd love to get a real dep solver | 00:00 |
harlowja | there's a lot of potential paths in that tree/graph | 00:00 |
clarkb | actually all you have to do is install that version of openstackclient I think thats the minimal reproduction there | 00:00 |
dstufft | I started to try before | 00:01 |
dstufft | but I got frustrated trying to teach myself how to write a SAT solver | 00:01 |
harlowja | lifeless i know wants to take a crack at it ;) | 00:01 |
harlowja | meh, or just brute force it by scanning the expanded dependecny graph | 00:01 |
lifeless | gawd no | 00:01 |
lifeless | I want you to do it | 00:01 |
harlowja | no u | 00:01 |
harlowja | lol | 00:01 |
clarkb | harlowja: http://www.princeton.edu/~chaff/publication/DAC2001v56.pdf | 00:02 |
clarkb | harlowja: have fun :) | 00:02 |
dstufft | well | 00:03 |
harlowja | ;) | 00:03 |
dstufft | one of the tricky parts here is that we can't build the entire SAT problem up front | 00:03 |
dstufft | since that requires downloading packages | 00:03 |
clarkb | dstufft: yes you would evaluate a iterative CNF | 00:03 |
harlowja | ya, pippin downloads all of them | 00:03 |
lifeless | clarkb: lol | 00:04 |
clarkb | lifeless: :) | 00:04 |
lifeless | dstufft: well, we should fix that | 00:04 |
lifeless | dstufft: index the deps and export that from pypi | 00:04 |
harlowja | so pippin asks pip for package Y>1; pip says [1, 2, 3]; pippin then asks pip for Y==1; downloads that, runs its egg-info; looks at Y==1 dependency X (and repeat...) | 00:04 |
fungi | mmmloops | 00:04 |
dstufft | lifeless: can't do that really | 00:04 |
clarkb | seems like it should be possible right? as new clauses come in update the CNF, if you reach an error state halt, else continue with current rule | 00:04 |
harlowja | and thats how u get a full resolved potential graph (a big graph) | 00:04 |
lifeless | dstufft: why not ? | 00:04 |
harlowja | https://github.com/harlowja/pippin/blob/future/pippin.py#L401 (is this) | 00:05 |
*** dmsimard is now known as dmsimard_away | 00:05 | |
dstufft | lifeless: people can do whatever they want in a setup.py, we'd have to guess at what they might be doing | 00:05 |
fungi | part of the problem is that the python packaging system has dug itself a huge crater whereby packages are allowed to declare conditional dependencies resolved by running arbitrary code | 00:05 |
lifeless | dstufft: isn't that what we just spent X years fixing (ignoring install_requires) | 00:05 |
harlowja | ya, fungi i agree to that; it dug itself deeper with that | 00:05 |
clarkb | fungi: they can even open tabs in your webbrowser :) | 00:05 |
fungi | and so those dependencies can vary conditionally based on the environment in which you're installing | 00:06 |
lifeless | dstufft: in that wheels have static dep dmetadata | 00:06 |
fungi | lifeless: true, we could in theory do this by first building wheels of everything specific to the platform we want to be able to install on | 00:06 |
lifeless | and only solve it for the wheel case | 00:07 |
fungi | and then you get into the issue of why there's no solution yet for linux wheels of non-pure-python packages | 00:07 |
lifeless | for non wheels do the iterative thing | 00:07 |
fungi | so it becomes extremely platform-specific, which isn't something pypi is going to be able to solve itself | 00:07 |
lifeless | thats more than we need, and more than is needed to make many peoples lives better | 00:08 |
dstufft | lifeless: yes, we can do it for wheels, and we'll be able to do it for sdist 2.0, we'll never be able to do it for legacy sdists, that's what I mean by we can't really solve it entirely. We can make it less of a problem though | 00:08 |
dstufft | and that's the overall plan here | 00:08 |
fungi | e.g. no way to publish metadata which will predict for you what dependencies your system is actually going to end up with when installing a package on your particular platform | 00:08 |
dstufft | what I mean though, is that whatever we do has to either support iteratively adding more rules efficiently or it needs to be really fast so we can redo it everytime we download another file and get it's dependencies | 00:09 |
lifeless | fungi: for the non-compiled case sure there is | 00:10 |
lifeless | fungi: which is most of pypi, again :) | 00:10 |
lifeless | dstufft: so you wouldn't add after each file you download | 00:10 |
lifeless | dstufft: you'd download a set of files, scan them and add all their rules | 00:10 |
openstackgerrit | Merged openstack-infra/project-config: Revert "Update swift upload expiry for all jobs" https://review.openstack.org/157585 | 00:11 |
openstackgerrit | Douglas Mendizábal proposed openstack-infra/project-config: Add a new devstack-gate job to Barbican's tests https://review.openstack.org/157607 | 00:11 |
*** ParsectiX has quit IRC | 00:13 | |
clarkb | http://www.cs.carleton.edu/faculty/dmusican/cs321s10/SATSolver.py is great, just fork zchaff | 00:14 |
*** ParsectiX has joined #openstack-infra | 00:14 | |
clarkb | though that might be a half decent way to do all of the other pip work without worrying baout the actual SAT solver (ok for non commercial work aiui but not completely clear on licensing details) | 00:14 |
dstufft | clarkb: zchaff is C++ | 00:15 |
*** carl_baldwin has joined #openstack-infra | 00:15 | |
clarkb | dstufft: yes but you can do hacky things like ^ to at least use it | 00:15 |
clarkb | dstufft: then say "hey this thing is really neat now that I have everything else working I will write the solver" | 00:15 |
dstufft | yea, there's also some things written as python extensions which are written as C exts | 00:16 |
dstufft | https://pypi.python.org/pypi/pycosat | 00:16 |
clarkb | as it is it seems like nothing happens because it seems insurmountable | 00:16 |
dstufft | but pip can't have C exts it depends on | 00:16 |
dstufft | clarkb: well it's not so much that, just nobody's put in the time to figure it all out yet :) | 00:17 |
dstufft | I started to and got frustrated and worked on lower hanging fruit | 00:17 |
dstufft | I'm honestly really the only person with any signifcant dedicated bandwidth to work on the entire packaging toolchain | 00:18 |
*** sdake_ has joined #openstack-infra | 00:18 | |
clarkb | or maybe even have pip use pycosat if its available | 00:18 |
clarkb | while you sort out writing a native solver | 00:18 |
dstufft | so a lot of things are blocked on someone to do them, and often that means I'm the bottleneck unless someone else does them :/ | 00:19 |
*** hyakuhei has joined #openstack-infra | 00:19 | |
*** ZZelle_ has quit IRC | 00:20 | |
*** otter768 has joined #openstack-infra | 00:20 | |
anteaya | okay just as a heads up, this patch adds a test to cinder from a stackforge repo that cinder doesn't know anything about: https://review.openstack.org/#/c/153868/ | 00:20 |
clarkb | oh hey pycosat does the iterative thing (for different reasons) | 00:21 |
* clarkb isn't crazy | 00:21 | |
anteaya | the also didn't know anything about this one: https://review.openstack.org/#/c/154605/ | 00:21 |
*** sdake__ has joined #openstack-infra | 00:21 | |
anteaya | my stance is and they agree is that this repo/plugin should be doing third party ci | 00:21 |
*** oomichi has quit IRC | 00:21 | |
anteaya | and reporting build status like other plugins | 00:22 |
clarkb | we may want to resurrect the special pipeline for thirdish aprty testing | 00:22 |
clarkb | anteaya: I don't think we need to do that if we can run the test for them | 00:22 |
clarkb | anteaya: we just need a more effective way of reporting the results | 00:22 |
anteaya | clarkb: cinder doesn't know anything about it | 00:22 |
anteaya | and certianly isn't willing to let a plugin gate | 00:22 |
clarkb | anteaya: I don't think thats an insurmountable issue. It just means we don't put the job in check and gate | 00:22 |
*** hichihar_ has joined #openstack-infra | 00:23 | |
clarkb | anteaya: but if its open source software why shouldn't we just run the tests for them? | 00:23 |
fungi | i think it's just more of a question of whether the projects want the driver test to be run on their project. i mean, they have one for ceph which is also not an openstack project (it's not even a stackforge project) | 00:23 |
dstufft | clarkb: yea, pycosat isn't a bad thing, it's just C so I didn't look to close at it, especially when there are some pure python ones available, someone just needs to figure out A) if we can use them and B) how best to integrate them | 00:23 |
anteaya | well jgriffith doens't like the ceph one either | 00:23 |
clarkb | this will require some work on our part to make the thirdish party testing pipeline reality but I think it is doable | 00:23 |
anteaya | so I think it is time for some discussion | 00:23 |
*** dangers is now known as dangers_away | 00:23 | |
anteaya | since the patches I showed them were news to them and caught them (and myself) by surprise | 00:24 |
clarkb | dstufft: oh tehre are pure python libs too? I should dig around a bit more | 00:24 |
*** yamamoto has joined #openstack-infra | 00:24 | |
clarkb | anteaya: right I don't think we disagree with your intent, only the implementation | 00:24 |
anteaya | that is fine | 00:24 |
dstufft | clarkb: 0install had one, there's depsolver too which is written by enthought | 00:24 |
clarkb | anteaya: there really isn't any reason to require a third party test rig if we can run the test | 00:24 |
clarkb | anteaya: we just have to figure out how to do that | 00:24 |
dstufft | https://github.com/enthought/depsolver | 00:24 |
anteaya | as long as cinder is in the know and agrees to what the implications are for them | 00:25 |
dstufft | depsolver is *probably* the most likely candidate | 00:25 |
*** yamamoto has quit IRC | 00:25 | |
anteaya | having a plugin gate is not okay with them | 00:25 |
*** sdake__ has quit IRC | 00:25 | |
*** sdake_ has quit IRC | 00:25 | |
*** otter768 has quit IRC | 00:25 | |
anteaya | nor with me | 00:25 |
*** ayoung has joined #openstack-infra | 00:25 | |
fungi | anteaya: i mean, every job they have for cinder tests cinder in a configuration which involves at least some software (generally rather a lot of it) which isn't openstack software | 00:25 |
dstufft | it's just limited on time to figure out if it does everything we want (and if it doesn't, can we adapt it so it does) and then actually integrating it | 00:25 |
anteaya | running tests for them is fine, we do that for all stackforge projectgs | 00:26 |
fungi | anteaya: but i agree, they should get to pick what software ;) | 00:26 |
anteaya | I really hope you aren't making fun of me | 00:26 |
fungi | (within reason anyway) | 00:26 |
fungi | huh | 00:26 |
*** wenlock has quit IRC | 00:26 | |
fungi | ? | 00:26 |
clarkb | dstufft: yup understood. I thought that there was a larger need to write a solver from scratch because no other pure python solvers existed when you looked | 00:26 |
anteaya | I never know how to take ;) | 00:26 |
clarkb | dstufft: I am probably just misremembering | 00:27 |
anteaya | which is why I never use it | 00:27 |
dstufft | clarkb: when I looked there was only 0install which is GPL so I didn't look at the code, depsolver came out a few months after that | 00:27 |
dstufft | I looked a long while ago | 00:27 |
clarkb | anteaya: basically the underlying issue is we have only one way to leave a -1 or +1 today | 00:28 |
clarkb | anteaya: but if we could report with a second account -1s and +1s then we could run tests for people that are not gating or otherwise would be third party | 00:29 |
clarkb | anteaya: there was work to solve this problem at one point but it mostly trickled away when tripleo ended up using nonvoting jobs instead (at least that is my memory of it and others should correct me if I remember wrong) | 00:30 |
anteaya | sure | 00:30 |
anteaya | so we would be running their third party ci for them | 00:30 |
clarkb | sort of, I think we would still treat it like stackforge projects eg if the test went sideways we would just turn it off and let the responsile parties fix. But we would handle the resources and execution necessary | 00:30 |
anteaya | if they report like a third party ci then like other third party ci systems, I don't care where they run | 00:31 |
clarkb | jhesketh: ^ do you remember the work for making that happen? I want to say you may have done some of it | 00:31 |
anteaya | including if they run on us | 00:31 |
openstackgerrit | Douglas Mendizábal proposed openstack-infra/project-config: Add a new devstack-gate job to Barbican's tests https://review.openstack.org/157607 | 00:31 |
clarkb | anteaya: well the important thing is everyone says "I have to go run a CI" when you tell them "third party is required" | 00:31 |
clarkb | anteaya: so eing careful of the terminology is important | 00:32 |
anteaya | the point is that they don't have any influence on the workflow of patches in gerrit any more or less than any other third party ci system | 00:32 |
anteaya | can you expand on that point? | 00:32 |
clarkb | yes, just know that when you tell someone that third party ci is required they at that point stop working with us to test their open source thing in the open and instead build a ci system at "home" and report results back | 00:33 |
jhesketh | clarkb: yep, most of that is in review at the moment (to allow voting with different accounts etc) | 00:33 |
clarkb | this can and should be much more cooperative where it can be | 00:33 |
jhesketh | although I do need to rebase some of it | 00:33 |
anteaya | clarkb: okay that is fair | 00:33 |
clarkb | jhesketh: perfect, I will have to put my zuul review hat on tomorrow and dig into zuul changes again | 00:33 |
jhesketh | cool, I'll make sure I reroll those today | 00:33 |
anteaya | as long as the workflow is the same to the repo they are testing, it doesn't matter where they run | 00:33 |
clarkb | anteaya: ya, I think we would end up having a jenkins-second-party-ci account that infra managed then individual projects would add that to the voting groups like they do other projects | 00:34 |
anteaya | so stackforge repos don't have any influence on the workflow of the gerrit patches | 00:34 |
clarkb | anteaya: and we just run the tests and since the votes aren't associated to "jenkins" no gating can happen | 00:34 |
anteaya | clarkb: that might make sense | 00:34 |
anteaya | clarkb: I can get behind that | 00:34 |
fungi | right, agreeing with clarkb, if their jobs _can_ run in our infrastructure i'd sorely like them to. it's an unfortunate current limitation that the only options are to glom them into a single report or force them to work entirely from the outside | 00:35 |
anteaya | clarkb: would you like to draft some thoughts on an etherpad that we can then make into a ml post, once jeblair has had time to add his thoughts | 00:35 |
clarkb | fungi: I think a large part of that is they were all told "third party ci" they weren't told "work with us to get testing working depending on your needs" | 00:35 |
anteaya | fungi: no argument from me | 00:35 |
clarkb | anteaya: I don't think I need to, this was all work that was agreed upon a while back | 00:35 |
anteaya | yes if we can help them, let's help them | 00:35 |
anteaya | was it? | 00:36 |
clarkb | anteaya: it just lost steam when tripleo solved their needs in another way | 00:36 |
anteaya | was their a record of this? | 00:36 |
clarkb | anteaya: yes tripleo wanted this for their testing | 00:36 |
anteaya | since this is news to me | 00:36 |
clarkb | there was a long ml thread irc | 00:36 |
clarkb | I don't have all the info right in front of me but it could be dug up | 00:36 |
anteaya | anyone remember what release or ml or topic keywords? | 00:36 |
anteaya | I can go digging | 00:36 |
anteaya | any filters are helpful | 00:37 |
fungi | the single report/non-voting solution's primary drawback is that it will hold up results from other jobs if it takes a really, really long time to run and also some projects reviewers have expressed that they want to see separate clear votes for those jobs so they're easier to not ignore (which tells me we're way overusing non-voting jobs but that's another problem to deal with) | 00:37 |
anteaya | fungi: agreed | 00:37 |
clarkb | anteaya: found it "[openstack-dev] [Nova] [Ironic] [Infra] Making Ironic vote as a third-party Nova driver" was ironic not tripleo | 00:37 |
clarkb | I think because ironic ended up doing what tripleo was doing | 00:37 |
*** ddieterly has joined #openstack-infra | 00:37 | |
clarkb | anyways jhesketh did the work, we just need to get it in and move forward if there are interested parties again | 00:37 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Only format swift string parameters https://review.openstack.org/157592 | 00:38 |
*** ddieterl_ has joined #openstack-infra | 00:38 | |
anteaya | may 2014 | 00:38 |
jhesketh | (heh, I actually did the work twice :p) | 00:38 |
fungi | yeah, basically if ironic's jobs ran as non-voting check jobs for nova then they had a potential to delay other job results, and also a tendency to get ignored because the vote from them wasn't distinct (jenkins left a +1 even though their job was failing, because it was non-voting) | 00:38 |
zaro | clarkb: i attempted to added asselin's to review-dev to get '/p/' tp work but it doesn't work. can you help? | 00:38 |
*** ddieterly has quit IRC | 00:39 | |
zaro | clarkb: i can make it work by commenting out the rewrite rule though. | 00:39 |
clarkb | jhesketh: gah that comment, oh well | 00:39 |
clarkb | zaro: without the rewrite rule gerrit serves the data not the git replica | 00:39 |
jhesketh | figured I'd quickly re-roll | 00:39 |
clarkb | jhesketh: yup and thanks | 00:39 |
zaro | clarkb: also the replication is not to /var/lib/git it's actaully to /opt/.. | 00:39 |
openstackgerrit | Matt Riedemann proposed openstack/requirements: Block novaclient 2.21 https://review.openstack.org/157619 | 00:39 |
mriedem | jogo: dansmith: clarkb: alaski: melwitt: ^ | 00:39 |
zaro | clarkb: i could be applying that fix incorrect, but dunno | 00:40 |
clarkb | zaro: do you have a link to asselins fix handy? | 00:40 |
zaro | https://review.openstack.org/#/c/155154 | 00:40 |
jogo | mriedem: damn | 00:40 |
openstackgerrit | Joe Gordon proposed openstack/requirements: Blacklost novaclient 2.21.0 https://review.openstack.org/157620 | 00:40 |
jogo | mriedem: I was doing the same thing | 00:40 |
jogo | mriedem: I'll abadon mine | 00:41 |
zaro | clarkb: i added the '<Directory /usr/lib/git-core>' setion | 00:41 |
clarkb | zaro: try now | 00:42 |
zaro | clarkb: works now | 00:42 |
clarkb | zaro: I think you needed the bit in https://review.openstack.org/#/c/155154/4/manifests/init.pp too. I manually enabled that with `sudo a2enmod cgi && restart apache2` | 00:42 |
clarkb | ya that was it then | 00:42 |
clarkb | zaro: so the vhost file edit was good, just needed to enable the apache module for cgi too | 00:42 |
clarkb | jhesketh: https://jenkins07.openstack.org/job/check-dg-tempest-dsvm-full-reexec/231/ just finished | 00:43 |
anteaya | okay well jgriffith posted to the mailing list | 00:43 |
jhesketh | clarkb: cool, will start poking | 00:43 |
*** sarob has quit IRC | 00:43 | |
zaro | clarkb: how did that get added for review.o.o and not review-dev.o.o? | 00:43 |
anteaya | and i have to offline and change my energy since I have to give a treatment tonight | 00:43 |
anteaya | talk to you all tomorrow | 00:44 |
jogo | any requirements cores around? https://review.openstack.org/#/c/157619/1 | 00:45 |
tchaypo | 2015-02-19 16:44:59,031 Synced change openstack%2Fnova~master~I2fd74bd58fc11d6afa5512a843e02a709e17124a in 18.96816 seconds. | 00:45 |
tchaypo | wheee | 00:46 |
tchaypo | I’m starting to feel like gertty doesn’t scale to tracking all the repos | 00:46 |
zaro | clarkb: looks like it's in init.pp in puppet-gerrit and pretty general so i assume it should have been setup for both review and review-dev ? | 00:48 |
zaro | clarkb: seems like it should have gotten installed so not sure what to fix. | 00:49 |
clarkb | zaro: no we don't have that in the puppet for gerrit | 00:49 |
clarkb | zaro: you need to add that too | 00:49 |
*** markvoelker has joined #openstack-infra | 00:50 | |
zaro | so how did it get installed for review.o.o? | 00:50 |
*** crc32 has quit IRC | 00:52 | |
*** dmsimard_away is now known as dmsimard | 00:52 | |
zaro | i guess it doesn't matter, i can still add it to the gerrit puppet files. but would be good to know how that package made it onto review.o.o | 00:53 |
openstackgerrit | Anna Shen proposed openstack-infra/project-config: Add grenade devstack check for trove as experimental https://review.openstack.org/155100 | 00:56 |
*** SumitNaiksatam has quit IRC | 00:57 | |
*** yamamoto has joined #openstack-infra | 00:57 | |
jhesketh | clarkb: well that seems like a good improvement. From 5m39.724s to 2m31.859s | 00:58 |
*** markvoelker has quit IRC | 00:59 | |
*** david-lyle is now known as david-lyle_afk | 00:59 | |
clarkb | jhesketh: nice! | 00:59 |
clarkb | jhesketh: what are your thoughts on logging? do I need to beef that up? | 00:59 |
*** asettle is now known as asettle-gym | 00:59 | |
clarkb | zaro: it didn't get installed for review.o.o because it wasn't necessary with apache 2.2 | 00:59 |
jhesketh | clarkb: I don't think so... If the upload fails we won't get that in the uploaded log anyway and the Jenkins log will contain the raised error | 01:00 |
*** markvoelker has joined #openstack-infra | 01:00 | |
clarkb | jhesketh: oh right the exception will bubble up | 01:00 |
jhesketh | clarkb: the only thing that is being outputted now is the initial file list (which is quite large, but that doesn't matter) | 01:00 |
jhesketh | correct | 01:00 |
*** nelsnelson has quit IRC | 01:01 | |
clarkb | ya I think the file list is good at least as a sanity check that what we put in results in the same list we expect to get out (regardless of upload success or failure) | 01:01 |
*** hyakuhei has quit IRC | 01:04 | |
*** heyongli has quit IRC | 01:05 | |
clarkb | jhesketh: anything else I can do to help? | 01:05 |
clarkb | otherwise its getting late in the day I think I may go find the television | 01:05 |
*** wznoinsk has quit IRC | 01:05 | |
jhesketh | clarkb: nope, I think we're ready to merge the threaded uploader though (ie works for me) | 01:06 |
jhesketh | clarkb: just tried 50 threads and saw no improvement, so we should be maxing out the bandwidth now | 01:06 |
clarkb | jhesketh: maxing it with the default 10 from zuul? | 01:06 |
*** pczesno has quit IRC | 01:06 | |
jhesketh | (trying 200 threads now out of interest) | 01:06 |
jhesketh | clarkb: yep, 10 vs 50 was no different | 01:06 |
clarkb | I can probably get the updated script in place tomorrow though will really try to catch up on zuul reviews too so we shall see | 01:07 |
jhesketh | yeah I don't think there is any rush | 01:07 |
jhesketh | clarkb: you can pull these nodes out of hold if you like though | 01:07 |
*** wznoinsk has joined #openstack-infra | 01:07 | |
jhesketh | (and yes, 200 was the same as 50) | 01:07 |
clarkb | jhesketh: they will be deleted pretty quickly oh ok 200 is done running so that won't hurt you | 01:07 |
*** hyakuhei has joined #openstack-infra | 01:07 | |
clarkb | removing the holds now | 01:08 |
jhesketh | yep | 01:08 |
*** pczesno has joined #openstack-infra | 01:08 | |
openstackgerrit | Steve Kowalik proposed openstack-infra/project-config: Add a lot of missing descriptions https://review.openstack.org/157626 | 01:08 |
*** heyongli has joined #openstack-infra | 01:08 | |
clarkb | all done | 01:08 |
jhesketh | cheers :-) | 01:08 |
jhesketh | clarkb: I'm going to owe you a few beers next we catch up! | 01:09 |
clarkb | nah you are doing all the hard work | 01:09 |
jhesketh | I was pretty sure I was just flailing around ;-) | 01:09 |
*** markmcclain has joined #openstack-infra | 01:11 | |
*** w_ has quit IRC | 01:11 | |
*** hyakuhei has quit IRC | 01:11 | |
*** sputnik13 has quit IRC | 01:12 | |
openstackgerrit | Khai Do proposed openstack-infra/puppet-gerrit: Fix serving of gerrit repos with '/p' in url https://review.openstack.org/157627 | 01:12 |
zaro | clarkb: ^ | 01:12 |
clarkb | zaro: +2 thanks | 01:13 |
*** Sukhdev has joined #openstack-infra | 01:14 | |
*** dprince has quit IRC | 01:15 | |
*** achanda has quit IRC | 01:16 | |
*** Daviey has quit IRC | 01:17 | |
*** abhirc has quit IRC | 01:17 | |
*** yamamoto has quit IRC | 01:20 | |
*** pcrews has quit IRC | 01:22 | |
*** Daviey has joined #openstack-infra | 01:25 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 01:25 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 01:25 | |
*** MarkAtwood has quit IRC | 01:30 | |
openstackgerrit | Matt Riedemann proposed openstack-infra/elastic-recheck: Add query for neutronclient icehouse bug 1423753 https://review.openstack.org/157631 | 01:33 |
openstack | bug 1423753 in python-neutronclient "Neutron Client version 2.3.11 breaks icehouse" [Undecided,New] https://launchpad.net/bugs/1423753 - Assigned to Henry Gessau (gessau) | 01:33 |
*** tiswanso has quit IRC | 01:35 | |
*** yamamoto has joined #openstack-infra | 01:37 | |
mriedem | dhellmann: fungi: markmcclain: any other requirements cores around want to get nova jobs unblocked? https://review.openstack.org/#/c/157619/ | 01:39 |
mriedem | we have a revert the novaclient 2.21 problem but that's blocked by the icehouse blocker | 01:39 |
mriedem | *revert for the | 01:39 |
clarkb | mriedem: so the quick fix is to not use the broken release? | 01:40 |
*** chlong has quit IRC | 01:40 | |
mriedem | clarkb: yeah | 01:40 |
clarkb | +2 | 01:40 |
mriedem | bash completion is hosed | 01:40 |
mriedem | gonna revert what's breaking, then get a cells job enabled on novaclient again or a functional test, then revert the revert and work that until it passes | 01:41 |
mriedem | the revert is blocked by icehouse | 01:41 |
*** chlong has joined #openstack-infra | 01:41 | |
clarkb | jhesketh: if you are still around ^ would be a good one to review | 01:41 |
jhesketh | clarkb: the requirements update? | 01:43 |
openstackgerrit | Merged openstack-infra/elastic-recheck: Add query for neutronclient icehouse bug 1423753 https://review.openstack.org/157631 | 01:43 |
openstack | bug 1423753 in python-neutronclient "Neutron Client version 2.3.11 breaks icehouse" [Undecided,New] https://launchpad.net/bugs/1423753 - Assigned to Henry Gessau (gessau) | 01:43 |
clarkb | jhesketh: ya | 01:43 |
jhesketh | clarkb: the change makese sense to me, if that's the correct course I'm happy with it (ie as opposed to fixing the python client, reverting etc) | 01:44 |
*** ParsectiX has quit IRC | 01:44 | |
*** melwitt has quit IRC | 01:44 | |
clarkb | jhesketh: given what mriedem describes as their plan of action I think its reasonable | 01:44 |
jhesketh | okay, merging | 01:44 |
clarkb | jhesketh: usually I just ask for a plan of some sort and only really review requirements updates when the gate is involved | 01:44 |
*** ParsectiX has joined #openstack-infra | 01:45 | |
jhesketh | clarkb: yep, good idea | 01:45 |
*** tiswanso has joined #openstack-infra | 01:50 | |
*** abhirc has joined #openstack-infra | 01:53 | |
*** yamamoto has quit IRC | 02:00 | |
*** hdd has joined #openstack-infra | 02:03 | |
*** yamamoto has joined #openstack-infra | 02:03 | |
*** baoli has quit IRC | 02:03 | |
*** baoli has joined #openstack-infra | 02:08 | |
*** MarkAtwood has joined #openstack-infra | 02:11 | |
*** amotoki has joined #openstack-infra | 02:13 | |
openstackgerrit | Syed Ismail Faizan Barmawer proposed openstack-infra/project-config: Add ironic-lib to openstack https://review.openstack.org/157636 | 02:14 |
*** salv-orlando has quit IRC | 02:17 | |
*** Sukhdev has quit IRC | 02:20 | |
*** otter768 has joined #openstack-infra | 02:21 | |
*** dmsimard is now known as dmsimard_away | 02:23 | |
*** yamahata has joined #openstack-infra | 02:23 | |
*** otter768 has quit IRC | 02:26 | |
openstackgerrit | Syed Ismail Faizan Barmawer proposed openstack-infra/project-config: Add ironic-lib to openstack https://review.openstack.org/157636 | 02:30 |
*** ghostpl_ has quit IRC | 02:30 | |
*** asettle-gym is now known as asettle | 02:32 | |
*** mtanino has quit IRC | 02:44 | |
mrodden | TIL get-pip.py contains a base64 encoded zipfile archive of pip as a byte docstring | 02:46 |
*** Ryan_Lane has quit IRC | 02:47 | |
*** patrickeast has quit IRC | 02:51 | |
*** dannywilson has joined #openstack-infra | 02:55 | |
openstackgerrit | Merged openstack/requirements: Block novaclient 2.21 https://review.openstack.org/157619 | 02:58 |
*** dannywilson has quit IRC | 03:00 | |
kevinbenton | anteaya: hey, i have a question about the naming restrictions for a vendor plugin on stackforge | 03:08 |
*** yamahata has quit IRC | 03:11 | |
*** otter768 has joined #openstack-infra | 03:14 | |
*** coolsvap_ is now known as coolsvap | 03:15 | |
*** stevemar has quit IRC | 03:15 | |
*** ivar-laz_ has joined #openstack-infra | 03:15 | |
*** stevemar has joined #openstack-infra | 03:16 | |
*** sdake_ has joined #openstack-infra | 03:17 | |
*** salv-orlando has joined #openstack-infra | 03:18 | |
*** ivar-lazzaro has quit IRC | 03:18 | |
*** SumitNaiksatam has joined #openstack-infra | 03:19 | |
*** koolhead17 has joined #openstack-infra | 03:20 | |
*** ivar-laz_ has quit IRC | 03:20 | |
*** sdake_ has quit IRC | 03:22 | |
*** SumitNaiksatam has quit IRC | 03:23 | |
*** SumitNaiksatam has joined #openstack-infra | 03:25 | |
*** Ryan_Lane has joined #openstack-infra | 03:26 | |
*** yamamoto has quit IRC | 03:28 | |
*** gyee has quit IRC | 03:28 | |
*** dims__ has joined #openstack-infra | 03:29 | |
*** dims__ has quit IRC | 03:30 | |
*** dims__ has joined #openstack-infra | 03:31 | |
*** Ryan_Lane has quit IRC | 03:31 | |
*** dims_ has joined #openstack-infra | 03:32 | |
*** coolsvap is now known as coolsvap_ | 03:34 | |
*** dims__ has quit IRC | 03:36 | |
*** coolsvap_ is now known as coolsvap | 03:43 | |
*** otter768 has quit IRC | 03:43 | |
*** unicell has quit IRC | 03:43 | |
*** zz_jgrimm is now known as jgrimm | 03:46 | |
*** koolhead17 has quit IRC | 03:51 | |
*** BharatK has joined #openstack-infra | 03:54 | |
*** nelsnelson has joined #openstack-infra | 03:56 | |
*** salv-orlando has quit IRC | 03:58 | |
*** pcrews has joined #openstack-infra | 04:00 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 04:07 | |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Refactor sources out of triggers https://review.openstack.org/118993 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Add gerrit reviews into patchset approvals https://review.openstack.org/97390 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Add support for negative requirements https://review.openstack.org/102726 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Configure triggers dynamically https://review.openstack.org/119534 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Add support for 'connection' concept https://review.openstack.org/121528 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Call driver methods more dynamically https://review.openstack.org/119533 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Add base class for triggers https://review.openstack.org/119532 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Add base class for sources https://review.openstack.org/119531 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/zuul: Add base class for reporters https://review.openstack.org/119530 | 04:10 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/project-config: zuul-swift-log index size in units https://review.openstack.org/156116 | 04:14 |
openstackgerrit | Joshua Hesketh proposed openstack-infra/project-config: zuul-swift-log index use icons for mimetype https://review.openstack.org/156117 | 04:14 |
jhesketh | SergeyLukjanov: If you get a chance, could you please check out my comment on https://review.openstack.org/#/c/107267/6 | 04:18 |
*** markvoelker has quit IRC | 04:19 | |
*** baoli has quit IRC | 04:20 | |
*** baoli has joined #openstack-infra | 04:20 | |
*** ianw has quit IRC | 04:21 | |
*** ianw has joined #openstack-infra | 04:22 | |
*** melwitt has joined #openstack-infra | 04:22 | |
*** tiswanso has quit IRC | 04:22 | |
*** MarkAtwood has quit IRC | 04:24 | |
*** carl_baldwin has quit IRC | 04:26 | |
*** yamamoto has joined #openstack-infra | 04:28 | |
*** harlowja is now known as harlowja_away | 04:28 | |
*** Sukhdev has joined #openstack-infra | 04:29 | |
*** hdd has quit IRC | 04:30 | |
*** yamamoto has quit IRC | 04:33 | |
*** nelsnelson has quit IRC | 04:33 | |
*** baoli has quit IRC | 04:34 | |
*** bhunter71 has left #openstack-infra | 04:36 | |
*** coolsvap is now known as coolsvap_ | 04:41 | |
*** sabeen has quit IRC | 04:46 | |
*** dims_ has quit IRC | 04:48 | |
*** coolsvap_ is now known as coolsvap | 04:48 | |
openstackgerrit | Syed Ismail Faizan Barmawer proposed openstack-infra/project-config: Add ironic-lib to openstack https://review.openstack.org/157636 | 04:49 |
*** deepakcs has joined #openstack-infra | 04:49 | |
*** markvoelker has joined #openstack-infra | 04:50 | |
*** carl_baldwin has joined #openstack-infra | 04:51 | |
*** markvoelker has quit IRC | 04:56 | |
*** mriedem has quit IRC | 05:07 | |
*** achanda has joined #openstack-infra | 05:08 | |
*** garyh has quit IRC | 05:09 | |
*** woodster_ has quit IRC | 05:10 | |
*** unicell has joined #openstack-infra | 05:28 | |
*** sputnik13 has joined #openstack-infra | 05:28 | |
*** ghostpl_ has joined #openstack-infra | 05:31 | |
*** ghostpl_ has quit IRC | 05:35 | |
*** unicell has quit IRC | 05:37 | |
*** unicell has joined #openstack-infra | 05:38 | |
openstackgerrit | melanie witt proposed openstack-infra/project-config: Reinstate the devstack-dsvm-cells job for novaclient https://review.openstack.org/157661 | 05:39 |
*** harlowja_at_home has joined #openstack-infra | 05:39 | |
openstackgerrit | Khai Do proposed openstack-infra/jenkins-job-builder: Add Job DSL Plugin https://review.openstack.org/150112 | 05:42 |
*** cinerama has quit IRC | 05:42 | |
*** salv-orlando has joined #openstack-infra | 05:42 | |
*** sarob has joined #openstack-infra | 05:43 | |
*** cinerama has joined #openstack-infra | 05:43 | |
*** Ryan_Lane has joined #openstack-infra | 05:43 | |
*** otter768 has joined #openstack-infra | 05:43 | |
*** otter768 has quit IRC | 05:48 | |
*** dims__ has joined #openstack-infra | 05:48 | |
*** hyakuhei has joined #openstack-infra | 05:50 | |
*** yfried|afk has joined #openstack-infra | 05:52 | |
*** dims__ has quit IRC | 05:53 | |
*** markvoelker has joined #openstack-infra | 05:53 | |
*** BharatK has quit IRC | 05:53 | |
*** markvoelker has quit IRC | 05:58 | |
*** teran has joined #openstack-infra | 05:59 | |
*** harlowja_at_home has quit IRC | 06:00 | |
*** mrda is now known as mrda-weekend | 06:01 | |
*** SumitNaiksatam has quit IRC | 06:02 | |
*** SumitNaiksatam has joined #openstack-infra | 06:04 | |
openstackgerrit | Khai Do proposed openstack-infra/project-config: Refactor Gerrit plugin build jobs https://review.openstack.org/157603 | 06:04 |
*** teran has quit IRC | 06:04 | |
*** SumitNaiksatam has quit IRC | 06:04 | |
*** SumitNaiksatam has joined #openstack-infra | 06:06 | |
*** BharatK has joined #openstack-infra | 06:09 | |
*** garyh has joined #openstack-infra | 06:10 | |
*** mrmartin has joined #openstack-infra | 06:10 | |
*** teran has joined #openstack-infra | 06:12 | |
*** cnesa1 has quit IRC | 06:12 | |
*** dannywilson has joined #openstack-infra | 06:12 | |
openstackgerrit | Andreas Jaeger proposed openstack-infra/project-config: Conditanalize gate-training-guides-tox-doc-publish-checkbuild https://review.openstack.org/157674 | 06:13 |
openstackgerrit | Khai Do proposed openstack-infra/project-config: Refactor Gerrit plugin build jobs https://review.openstack.org/157603 | 06:13 |
*** MarkAtwood has joined #openstack-infra | 06:14 | |
*** AJaeger has joined #openstack-infra | 06:14 | |
AJaeger | Morning, if anybody is around to review https://review.openstack.org/157674, I would appreciate it. Thanks! | 06:14 |
openstackgerrit | Merged openstack/requirements: add ceilometermiddleware https://review.openstack.org/154607 | 06:18 |
*** melwitt has quit IRC | 06:19 | |
*** AJaeger has quit IRC | 06:25 | |
*** Sukhdev has quit IRC | 06:29 | |
*** hdd has joined #openstack-infra | 06:29 | |
*** mrmartin has quit IRC | 06:30 | |
*** yamamoto has joined #openstack-infra | 06:30 | |
openstackgerrit | Merged openstack-infra/project-config: Add designate-ci group with label-Verified permission https://review.openstack.org/155788 | 06:31 |
*** mpaolino has joined #openstack-infra | 06:33 | |
*** yamamoto has quit IRC | 06:35 | |
*** achanda has quit IRC | 06:35 | |
*** ildikov has quit IRC | 06:36 | |
*** achanda has joined #openstack-infra | 06:38 | |
*** ParsectiX has quit IRC | 06:38 | |
*** ParsectiX has joined #openstack-infra | 06:39 | |
openstackgerrit | Khai Do proposed openstack-infra/system-config: Upgrade Gerrit from 2.8 to ver 2.9 for review.o.o https://review.openstack.org/155463 | 06:44 |
*** miqui has joined #openstack-infra | 06:45 | |
*** dannywilson has quit IRC | 06:45 | |
*** armax has quit IRC | 06:45 | |
*** dannywilson has joined #openstack-infra | 06:46 | |
openstackgerrit | Khai Do proposed openstack-infra/system-config: Upgrade Gerrit from 2.8 to ver 2.9 for review-dev.o.o https://review.openstack.org/157682 | 06:46 |
*** salv-orlando has quit IRC | 06:52 | |
*** markvoelker has joined #openstack-infra | 06:54 | |
*** ramineni has joined #openstack-infra | 06:57 | |
ramineni | hi .. can anybody let me know, when is the last date to submit changes to global-requirements.txt for kilo release? | 06:58 |
*** markvoelker has quit IRC | 06:58 | |
*** ParsectiX has quit IRC | 07:00 | |
zaro | clarkb: review-dev.o.o is broken because puppet reverted review_site, we'll need to land this to make it work again: https://review.openstack.org/#/c/157682/ | 07:00 |
*** hyakuhei has quit IRC | 07:00 | |
*** hyakuhei has joined #openstack-infra | 07:03 | |
*** hyakuhei has quit IRC | 07:04 | |
*** carl_baldwin has quit IRC | 07:04 | |
*** mrunge has joined #openstack-infra | 07:07 | |
*** hyakuhei has joined #openstack-infra | 07:08 | |
*** hyakuhei has quit IRC | 07:08 | |
*** hyakuhei has joined #openstack-infra | 07:10 | |
*** hdd has quit IRC | 07:10 | |
*** ildikov has joined #openstack-infra | 07:10 | |
*** afazekas_ has joined #openstack-infra | 07:11 | |
*** mrmartin has joined #openstack-infra | 07:11 | |
*** amotoki has quit IRC | 07:14 | |
*** hyakuhei has quit IRC | 07:18 | |
*** jamielennox is now known as jamielennox|away | 07:22 | |
*** ZZelle has quit IRC | 07:32 | |
*** ZZelle has joined #openstack-infra | 07:33 | |
*** andreykurilin_ has joined #openstack-infra | 07:40 | |
*** otter768 has joined #openstack-infra | 07:44 | |
*** mpaolino has quit IRC | 07:46 | |
openstackgerrit | Matthias Runge proposed openstack/requirements: Raise cap for Django https://review.openstack.org/155353 | 07:46 |
*** otter768 has quit IRC | 07:49 | |
*** mpaolino has joined #openstack-infra | 07:50 | |
*** miqui has quit IRC | 07:52 | |
*** Ryan_Lane has quit IRC | 07:54 | |
*** markvoelker has joined #openstack-infra | 07:55 | |
*** scheuran has joined #openstack-infra | 07:56 | |
*** markvoelker has quit IRC | 08:01 | |
*** camunoz has quit IRC | 08:01 | |
*** jp_at_hp has joined #openstack-infra | 08:09 | |
*** cnesa has joined #openstack-infra | 08:13 | |
*** koolhead17 has joined #openstack-infra | 08:14 | |
*** achanda has quit IRC | 08:15 | |
*** koolhead17 has quit IRC | 08:16 | |
*** dtantsur|afk is now known as dtantsur | 08:16 | |
*** yamamoto has joined #openstack-infra | 08:19 | |
*** andreykurilin_ has quit IRC | 08:21 | |
*** pblaho has joined #openstack-infra | 08:22 | |
*** mpaolino has quit IRC | 08:22 | |
*** yamamoto has quit IRC | 08:22 | |
*** salv-orlando has joined #openstack-infra | 08:24 | |
*** abhi_ has joined #openstack-infra | 08:25 | |
*** dannywilson has quit IRC | 08:28 | |
*** ociuhandu has quit IRC | 08:29 | |
*** coolsvap is now known as coolsvap_ | 08:29 | |
*** jgallard__ has joined #openstack-infra | 08:31 | |
*** mpaolino has joined #openstack-infra | 08:31 | |
*** stevemar has quit IRC | 08:34 | |
*** coolsvap_ is now known as coolsvap | 08:35 | |
*** coolsvap is now known as coolsvap_ | 08:35 | |
*** dims__ has joined #openstack-infra | 08:38 | |
*** koolhead17 has joined #openstack-infra | 08:38 | |
*** dims__ has quit IRC | 08:43 | |
*** MaxV has joined #openstack-infra | 08:44 | |
*** Ala has joined #openstack-infra | 08:44 | |
*** dtantsur is now known as dtantsur|bbl | 08:46 | |
*** jistr has joined #openstack-infra | 08:46 | |
*** ghostpl_ has joined #openstack-infra | 08:53 | |
*** amotoki has joined #openstack-infra | 08:56 | |
*** markus_z has joined #openstack-infra | 08:57 | |
*** markvoelker has joined #openstack-infra | 08:58 | |
*** amotoki has quit IRC | 08:59 | |
*** koolhead17 has quit IRC | 09:00 | |
*** arxcruz has joined #openstack-infra | 09:01 | |
*** salv-orlando has quit IRC | 09:02 | |
odyssey4me | anteaya ping | 09:02 |
*** markvoelker has quit IRC | 09:03 | |
*** jcoufal has joined #openstack-infra | 09:07 | |
*** hashar has joined #openstack-infra | 09:07 | |
*** yfried|afk has quit IRC | 09:08 | |
*** HeOS has quit IRC | 09:10 | |
*** Hal has joined #openstack-infra | 09:10 | |
*** Hal is now known as Guest4279 | 09:10 | |
*** mpaolino has quit IRC | 09:13 | |
*** psedlak has quit IRC | 09:13 | |
*** psedlak has joined #openstack-infra | 09:14 | |
*** Guest4279 has quit IRC | 09:15 | |
*** amotoki has joined #openstack-infra | 09:15 | |
*** flip214 has joined #openstack-infra | 09:16 | |
flip214 | Hi. I'd like to ask about CI for the DRBD driver in Cinder (and, sooner or later, Nova). | 09:17 |
flip214 | I read on the mailing list that for open-source drivers (that don't need special hardware) it would be possible to have the tests running via -infra. Is that correct, or a misunderstanding on my side? | 09:17 |
flip214 | Basically, to run the CI tests with DRBD, two machines (the cinder and one nova node) need a few packages installed and the cinder.conf changed - that is easily done via devstack. | 09:21 |
*** yamamoto has joined #openstack-infra | 09:23 | |
*** Ala has quit IRC | 09:25 | |
*** Ala has joined #openstack-infra | 09:25 | |
*** derekh has joined #openstack-infra | 09:27 | |
*** yamamoto has quit IRC | 09:28 | |
*** ihrachyshka has joined #openstack-infra | 09:33 | |
*** ssam2 has joined #openstack-infra | 09:35 | |
*** mpaolino has joined #openstack-infra | 09:36 | |
*** xyang1 has quit IRC | 09:38 | |
*** MarkAtwood has quit IRC | 09:41 | |
*** salv-orlando has joined #openstack-infra | 09:43 | |
*** otter768 has joined #openstack-infra | 09:45 | |
*** otter768 has quit IRC | 09:50 | |
*** BobBall_AWOL is now known as BobBall | 09:53 | |
openstackgerrit | Mateusz Matuszkowiak proposed openstack-infra/project-config: Add Fuel Mellanox plugin https://review.openstack.org/157704 | 09:57 |
*** lucasagomes has joined #openstack-infra | 09:58 | |
lucasagomes | hi all, can I please get some eyes on https://review.openstack.org/#/c/157075/ ? Should be straight forward, thank you | 09:58 |
*** markvoelker has joined #openstack-infra | 09:59 | |
*** markvoelker has quit IRC | 10:04 | |
*** jlibosva has joined #openstack-infra | 10:05 | |
*** dizquierdo has joined #openstack-infra | 10:06 | |
*** tnurlygayanov has quit IRC | 10:06 | |
*** Ryan_Lane has joined #openstack-infra | 10:07 | |
*** gulic has quit IRC | 10:08 | |
*** SumitNaiksatam has quit IRC | 10:11 | |
*** SumitNaiksatam has joined #openstack-infra | 10:12 | |
*** Ryan_Lane has quit IRC | 10:16 | |
openstackgerrit | Marc Koderer proposed openstack-dev/specs-cookiecutter: Fix issue with doc build https://review.openstack.org/157708 | 10:21 |
*** e0ne has joined #openstack-infra | 10:25 | |
*** Guest81987 has joined #openstack-infra | 10:28 | |
*** HeOS has joined #openstack-infra | 10:28 | |
*** ociuhandu has joined #openstack-infra | 10:29 | |
*** lxsli is now known as thelexx | 10:30 | |
*** e0ne is now known as e0ne_ | 10:33 | |
*** e0ne_ has quit IRC | 10:38 | |
*** _shaps_ has joined #openstack-infra | 10:38 | |
*** e0ne has joined #openstack-infra | 10:40 | |
deepakcs | Hi all, jenkins homepage for my job shows records from job #21 onwards, is it possible to see the records for job previos to #21 ? | 10:41 |
*** jedimike has quit IRC | 10:41 | |
*** ldnunes has joined #openstack-infra | 10:41 | |
*** cinerama has quit IRC | 10:43 | |
*** cinerama has joined #openstack-infra | 10:43 | |
*** hashar has quit IRC | 10:45 | |
openstackgerrit | Merged openstack-infra/project-config: Increase py26 timeouts for nova-stable https://review.openstack.org/156734 | 10:47 |
*** abhi_ has quit IRC | 10:50 | |
*** amotoki has quit IRC | 10:58 | |
*** markvoelker has joined #openstack-infra | 11:00 | |
*** viktors is now known as viktors|lunch | 11:01 | |
*** Guest81987 has quit IRC | 11:02 | |
*** kashyap has left #openstack-infra | 11:02 | |
*** mtanino has joined #openstack-infra | 11:03 | |
*** markvoelker has quit IRC | 11:05 | |
*** ramineni has left #openstack-infra | 11:06 | |
*** rfolco has joined #openstack-infra | 11:07 | |
*** mtanino has quit IRC | 11:09 | |
*** hichihar_ has quit IRC | 11:15 | |
*** salv-orlando has quit IRC | 11:24 | |
*** salv-orlando has joined #openstack-infra | 11:25 | |
*** yamamoto has joined #openstack-infra | 11:26 | |
*** rlandy has joined #openstack-infra | 11:28 | |
*** jgallard__ has quit IRC | 11:28 | |
*** dannywilson has joined #openstack-infra | 11:28 | |
*** BharatK has quit IRC | 11:30 | |
*** openstack has joined #openstack-infra | 20:23 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!