persia | tonyb: Nothing particularly different went wrong, as such. I just audited the scripts, and was unhappy with the discrepancies between the code and the policy. All sorted now, and I'll submit some patches post-election. | 00:00 |
---|---|---|
fungi | tonyb: really the only extra catch beyond changed we announced was there were some ~8 individuals who had updated their foundation e-mail addresses but hadn't followed through with the automatic verification messages they received after doing so | 00:00 |
tonyb | persia: cool I look forward to that. | 00:00 |
tonyb | fungi: Ahh okay. | 00:01 |
persia | fungi: 8 of those participating in active polls. I didn't count the number of folk who would have been affected if more polls were required. | 00:02 |
diablo_rojo | It was a fun intersection of a lot of random things. | 00:02 |
persia | tonyb: The high-impact issue was that folk who weren't Foundation Members were ending up listed as valid voters. | 00:02 |
diablo_rojo | I feel like persia and I handled it reasonably well :) | 00:02 |
fungi | tonyb: and after some discussion with the foundation web devs, we decided the member directory lookup api shouldn't implicitly filter on that, so they removed the check for e-mail validation on queries and will make that an explicit query option soon (likely prior to the tc election timeframe) | 00:03 |
tonyb | persia: okay. I thought owners.py took care of that (now). I look forward to seeing the fixes | 00:03 |
persia | But there are also some enhancements that would make sense, like suggesting election officials generate rolls when the nomination period starts, and have that automatically do exception processing for contributors who aren't foundation members, so that they can be reminded of the actions required to be able to vote with more than ~20 hours notice. | 00:04 |
fungi | persia: oh, did we have any non-members ending up in the electorate lists the owners.py script outputs? | 00:04 |
persia | tonyb: It might, but not when called with the tox shorthand from the election repo | 00:04 |
*** nplanel has joined #openstack-dev | 00:04 | |
*** thorst has joined #openstack-dev | 00:04 | |
persia | Yes. That was, for me, the primary issue. None of those ended up in the voters for the active polls. | 00:04 |
fungi | ahh, yeah, owners.py creates a convenience set of primary e-mail address lists, one for each team and one for the full electorate | 00:05 |
tonyb | persia: it's the same API so if generate-rolls gave you non-members then somethign is wrong | 00:05 |
fungi | if the generate-rolls thing in the elections repo was recreating that on its own from the yaml instead, i can see where it might have missed filtering on only members | 00:05 |
tonyb | persia: The on;y real down side of doing the roll generation earlier is it make the election work take longer but sure I s'pose that could happen | 00:06 |
persia | tonyb: That was my thought. As we didn't leave ourselves much time to generate rolls, we've worked around it for now, but we can do it right next time. | 00:06 |
persia | tonyb: The election work needs to start at the beginning of the nomination period anyway, because of nomination review. | 00:06 |
*** morazi has quit IRC | 00:06 | |
tonyb | fungi all generate-rolls does is download owners.py and run it with the args based on the election timeline. ... Then generate the SHAsum of the files that owners.py generates | 00:07 |
persia | We can probably automate some of that by adding tests to submitted nominations (e.g. This person contributed to the project in the timeframe, this person is a Foundation Member, this person can spell their IRC nick) | 00:07 |
tonyb | it was shell script that got converted to python | 00:07 |
fungi | basically if you use the example invocation for owners.py from its comment block, the number of lines in, say, owners/documentation.txt should be identical to the count of member: lines in documentation.yaml (as an example) | 00:07 |
tonyb | fungi: it doesn't do anything to the yaml ot txt | 00:07 |
persia | generate-rolls also correctly ignores some of the bot roles, which is a nice feature. | 00:07 |
tonyb | Sure, and gnerates thew stable rolls as documented in owners.py | 00:08 |
persia | But I think owners.py (correctly) doesn't filter on Foundation Members, as many other contributors are still "owners" in many senses. | 00:08 |
fungi | persia: well, none of the bots have foundation memberships, so with owners.py omitting foundation members from the .txt files they aren't supposed to get included regardless | 00:08 |
tonyb | Interesting ... meeting is starting ... | 00:09 |
persia | fungi: Yes. One of us didn't have a working environment, and was running owners.py manually, so in the final lists, we ended up using that filter to block the bots, rather than the ignore feature. | 00:09 |
fungi | i wonder if the set you ended up with that included nonmembers in the rolls files was actually not using the latest baster branch tip of system-config | 00:09 |
fungi | s/baster/master/ | 00:10 |
persia | fungi: generate-rolls clones the tip of master when run. I definitely got non-members when I ran earlier today. | 00:12 |
fungi | oh! that's one thing i didn't check. so it's correctly filtered in the full _electorate.txt but the individual lists like documenation.txt are not getting omitted. i'm digging into that now | 00:12 |
persia | Oh, heh, thanks. I was going to do it after sleeping, but I'd be delighted to review another's implementation instead. | 00:13 |
persia | Note that I think it's very important that we be *able* to get non-member contributors in YAML also, for various purposes. | 00:14 |
persia | Similarly, I appreciated being able to generate an exceptions report to know who would benefit from a reminder to consider joining the Foundation. | 00:14 |
fungi | yep, just found where i missed a conditional | 00:15 |
*** Openstack_newb has quit IRC | 00:17 | |
*** yassine has joined #openstack-dev | 00:19 | |
*** thingee_ has quit IRC | 00:19 | |
fungi | persia: tonyb: diablo_rojo: https://review.openstack.org/492329 is the one-liner fix for that | 00:21 |
fungi | wish i'd known sooner you ran into that issue and i'd have found/fixed it right away. terrible oversight on my part | 00:21 |
fungi | i thought i'd previously checked that the ptl rolls got correctly filtered too, but i must have just been checking the tc electorate forgetting they're built on separate passes | 00:23 |
persia | fungi: My python isn't great,. but my code checked for "member" in the equivalent of owners[owner].keys(): does just checking for 'member' in owners[owner] do the same thing? | 00:24 |
fungi | persia: since circa python 2.3 or so i think, yes | 00:25 |
diablo_rojo | Yes it is :) | 00:25 |
*** kornicameister has quit IRC | 00:25 | |
diablo_rojo | Different ways of getting info out of the dictionary | 00:25 |
fungi | the "in" operator automatically assumes you mean the keyset for a dict or similar associative array object | 00:25 |
*** kornicameister has joined #openstack-dev | 00:26 | |
fungi | also, if it helps, i copied that new line verbatim from where the previous change mentioned in the commit message added it for filtering the tc electorate | 00:26 |
fungi | just needed to indent it one more step | 00:26 |
fungi | (line 638) | 00:27 |
persia | I noticed the similarity. It's just different from my naive implementation, so I wanted to make sure I understood how it worked, rather than just that it did. | 00:27 |
*** edmondsw has joined #openstack-dev | 00:30 | |
*** thorst has quit IRC | 00:31 | |
fungi | again, sincerest apologies for missing that in the original implementation. i had been working on it prior to doing the non-ptg-attendee summit registration discount invites and so was focused on making it work for the full tc electorate, forgetting it needed to be checked in two different loops | 00:31 |
persia | No worries. As this was my first time using this code, it was nice to have a bug that meant I bothered to learn more about how it worked and track down some other (minor) issues in the process. Had the filtering been in place, I probably wouldn't have discovered the false negatives, etc. | 00:34 |
fungi | appreciate the additional attention on it | 00:34 |
*** edmondsw has quit IRC | 00:34 | |
fungi | i've tried to thoroughly comment the code in there, but will admit it needs some separate documentation as well. hoping we can fix that when we merge it into the elections repo and work on mashing it together with the other bits of code which are already in elections | 00:35 |
fungi | and do things like update them to use the same base python version ;) | 00:35 |
fungi | diablo_rojo: looks like civs is working. i got my ballot for ironic | 00:36 |
persia | and not have code that wraps other code in ways that mean the people using it have difficulties understanding how to troubleshoot when things go odd (without asking experts, who have proved immensely helpful) | 00:36 |
fungi | yeah, the wrappers there sort of surprised me to discover... i would have happily helped move this script into the elections repo earlier had i realized | 00:37 |
fungi | so it could be more tightly integrated | 00:37 |
*** yamamoto_ has quit IRC | 00:37 | |
diablo_rojo | fungi, yay! | 00:38 |
fungi | (and have now voted) | 00:38 |
*** yamamoto has joined #openstack-dev | 00:39 | |
*** kornicameister has quit IRC | 00:40 | |
fungi | the election page is nearly caught up now that zuul is quickly burning through the post pipeline backlog | 00:43 |
fungi | i think it's only lacking the last-minute telemetry addition | 00:44 |
fungi | which has about 65 commits still ahead of it, but shouldn't take more than another 20-30 minutes as long as we don't get anything else massive dumped in check in the interim | 00:45 |
*** kornicameister has joined #openstack-dev | 00:45 | |
*** markvoelker has joined #openstack-dev | 00:45 | |
*** rama_y has quit IRC | 00:48 | |
*** baojg has joined #openstack-dev | 00:48 | |
*** tovin07_ has joined #openstack-dev | 00:52 | |
*** baojg has quit IRC | 00:53 | |
diablo_rojo | fungi, yay! | 00:54 |
*** limao has joined #openstack-dev | 00:55 | |
fungi | that last election repo publish job is running now | 00:57 |
fungi | eta 2 minutes | 00:58 |
*** eharney has joined #openstack-dev | 00:59 | |
*** renmak_ has quit IRC | 01:00 | |
*** renmak__ has quit IRC | 01:00 | |
*** bobh has joined #openstack-dev | 01:02 | |
*** LampTreadStone07 has quit IRC | 01:03 | |
fungi | and telemetry's showing a candidate on the election page now, so all caught up | 01:03 |
persia | Excellent. | 01:03 |
diablo_rojo | Woot woot! | 01:04 |
*** jkilpatr has quit IRC | 01:04 | |
*** limao_ has joined #openstack-dev | 01:08 | |
*** thorst has joined #openstack-dev | 01:08 | |
*** thorst has quit IRC | 01:08 | |
*** thorst has joined #openstack-dev | 01:09 | |
*** limao has quit IRC | 01:09 | |
*** ioggstream has quit IRC | 01:10 | |
*** xarses_ has quit IRC | 01:12 | |
*** rwsu_ has quit IRC | 01:13 | |
*** thorst has quit IRC | 01:13 | |
*** mwarad has joined #openstack-dev | 01:16 | |
*** p4tux has quit IRC | 01:16 | |
*** tuanluong has joined #openstack-dev | 01:19 | |
persia | I've just put a time-sensitive election-related message in the openstack-tc@ moderation queue: if anyone could review it, that would be appreciated. The time sensitivity is only that it is supposed to be posted ASAP after 23:45 UTC on the 9th, but in practice it only needs to be posted before the next active TC discussion. | 01:20 |
*** p4tux has joined #openstack-dev | 01:24 | |
*** thorst has joined #openstack-dev | 01:25 | |
*** achampion has joined #openstack-dev | 01:25 | |
*** thorst has quit IRC | 01:27 | |
*** saggi has joined #openstack-dev | 01:27 | |
*** p4tux has quit IRC | 01:28 | |
persia | Hrm. Actually, contrary to the documentation, I've just received a rejection notice for trying to send the mail, rather than a report of being subject to moderation. Guidance on best mechanisms to send such a message appreciated. | 01:28 |
fungi | persia: you need to subscribe to the tc ml | 01:28 |
fungi | then it will queue your messages for moderation | 01:29 |
fungi | non-subscribers to that ml get their messages rejected | 01:29 |
persia | Ah. I was hoping for a magic header or something :) | 01:29 |
* persia does the use-more-of-someone-elses-disk-space dance | 01:30 | |
fungi | an alternative is that ttx can whitelist your address, but that's his call | 01:30 |
*** kornicameister has quit IRC | 01:30 | |
*** mwarad has quit IRC | 01:30 | |
persia | That's a larger stick than this needs, honestly :) I grumble about email-based systems, because I don't like email, but in this case, I'm actually using email, so have less grounds for complaint :) | 01:30 |
fungi | heh | 01:31 |
fungi | anyway, ttx generally approves moderation-pending messages when he wakes up | 01:31 |
fungi | i'll try to remember to pester him about it if it hasn't shown up on the ml by the time we have our office hour at 15:00 utc | 01:31 |
fungi | which is when we'd be likely to have a non-ml discussion about it anyway | 01:32 |
*** bobh has quit IRC | 01:35 | |
*** kornicameister has joined #openstack-dev | 01:35 | |
*** RuiChen has joined #openstack-dev | 01:37 | |
persia | As long as it appears for the office hour, I suspect the requirements of the relevant resolution will be met. | 01:38 |
persia | And I believe it's now in the right place to do that :) | 01:38 |
*** rwsu has joined #openstack-dev | 01:41 | |
*** gongysh has joined #openstack-dev | 01:46 | |
*** baojg has joined #openstack-dev | 01:49 | |
fungi | cool | 01:54 |
*** baojg has quit IRC | 01:56 | |
*** spligak has quit IRC | 02:16 | |
*** yuchenghui has quit IRC | 02:20 | |
*** kbyrne has quit IRC | 02:20 | |
*** kbyrne has joined #openstack-dev | 02:23 | |
*** yamahata has quit IRC | 02:25 | |
*** eharney has quit IRC | 02:26 | |
*** jamesmcarthur has joined #openstack-dev | 02:27 | |
*** iyamahat has quit IRC | 02:28 | |
*** thorst has joined #openstack-dev | 02:28 | |
*** thorst has quit IRC | 02:29 | |
*** kornicameister has quit IRC | 02:29 | |
*** jamesmcarthur has quit IRC | 02:32 | |
*** mwarad has joined #openstack-dev | 02:34 | |
*** kornicameister has joined #openstack-dev | 02:35 | |
*** linxuhua has joined #openstack-dev | 02:36 | |
*** esberglu has quit IRC | 02:40 | |
*** _mwarad_ has joined #openstack-dev | 02:49 | |
*** dklyle has quit IRC | 02:49 | |
*** zhurong has joined #openstack-dev | 02:52 | |
*** mwarad has quit IRC | 02:52 | |
*** jamesbenson has joined #openstack-dev | 02:52 | |
*** yamahata has joined #openstack-dev | 02:55 | |
*** jamesbenson has quit IRC | 02:57 | |
*** markvoelker has quit IRC | 03:02 | |
*** markvoelker has joined #openstack-dev | 03:03 | |
*** viraj has joined #openstack-dev | 03:08 | |
*** viraj-personal has joined #openstack-dev | 03:19 | |
*** viraj-personal is now known as vshah | 03:20 | |
*** viraj has left #openstack-dev | 03:21 | |
*** david-lyle has joined #openstack-dev | 03:22 | |
*** nicolasbock has joined #openstack-dev | 03:29 | |
*** yamamoto has quit IRC | 03:36 | |
*** gkadam has joined #openstack-dev | 03:41 | |
*** _mwarad_ has quit IRC | 03:47 | |
*** yamamoto has joined #openstack-dev | 03:47 | |
*** yamamoto has quit IRC | 03:48 | |
*** yamamoto has joined #openstack-dev | 03:49 | |
*** kornicameister has quit IRC | 03:53 | |
*** kornicameister has joined #openstack-dev | 03:54 | |
*** linxuhua has quit IRC | 04:01 | |
*** markvoelker has quit IRC | 04:01 | |
*** markvoelker has joined #openstack-dev | 04:01 | |
*** jamesbenson has joined #openstack-dev | 04:04 | |
*** thorst has joined #openstack-dev | 04:04 | |
*** rmcall has quit IRC | 04:07 | |
*** thorst has quit IRC | 04:09 | |
*** sridharg has joined #openstack-dev | 04:11 | |
*** renmak_ has joined #openstack-dev | 04:11 | |
*** renmak__ has joined #openstack-dev | 04:11 | |
*** spligak has joined #openstack-dev | 04:12 | |
*** mpeterson has joined #openstack-dev | 04:20 | |
*** thorst has joined #openstack-dev | 04:26 | |
*** dhajare has joined #openstack-dev | 04:29 | |
*** gongysh has quit IRC | 04:30 | |
*** thorst has quit IRC | 04:30 | |
*** mpeterson has quit IRC | 04:31 | |
*** gouthamr has joined #openstack-dev | 04:31 | |
*** hareesh has joined #openstack-dev | 04:38 | |
*** rmcall has joined #openstack-dev | 04:40 | |
*** claudiub has joined #openstack-dev | 04:40 | |
*** ekuris has joined #openstack-dev | 04:40 | |
*** linxuhua has joined #openstack-dev | 04:41 | |
*** mpeterson has joined #openstack-dev | 04:41 | |
*** david-lyle has quit IRC | 04:44 | |
*** rmcall has quit IRC | 04:45 | |
*** dklyle has joined #openstack-dev | 04:45 | |
*** itzikb has joined #openstack-dev | 04:47 | |
*** gyee has joined #openstack-dev | 04:48 | |
*** Poornima has joined #openstack-dev | 04:49 | |
*** baojg has joined #openstack-dev | 04:54 | |
*** vshah has quit IRC | 04:55 | |
*** mpeterson has quit IRC | 04:55 | |
*** rwsu has quit IRC | 04:58 | |
*** baojg has quit IRC | 05:01 | |
*** sreenath89 has quit IRC | 05:02 | |
*** Poornima has quit IRC | 05:03 | |
*** Poornima has joined #openstack-dev | 05:04 | |
*** jamesbenson has quit IRC | 05:06 | |
*** gongysh has joined #openstack-dev | 05:09 | |
*** marios has joined #openstack-dev | 05:10 | |
*** sree has joined #openstack-dev | 05:11 | |
*** gouthamr has quit IRC | 05:16 | |
*** mpeterson has joined #openstack-dev | 05:32 | |
*** itzikb has quit IRC | 05:33 | |
*** georgelorch has joined #openstack-dev | 05:34 | |
*** linxuhua has quit IRC | 05:36 | |
*** sshnaidm|off has quit IRC | 05:37 | |
*** armax has joined #openstack-dev | 05:48 | |
*** e0ne has joined #openstack-dev | 05:48 | |
*** armax has quit IRC | 05:48 | |
*** linxuhua has joined #openstack-dev | 05:48 | |
*** mvk has joined #openstack-dev | 05:49 | |
*** psachin has joined #openstack-dev | 05:51 | |
*** jprovazn has joined #openstack-dev | 05:52 | |
*** Poornima has quit IRC | 05:55 | |
*** yamamoto has quit IRC | 06:01 | |
*** itzikb has joined #openstack-dev | 06:02 | |
*** e0ne has quit IRC | 06:03 | |
*** dhajare has quit IRC | 06:04 | |
*** rcernin has joined #openstack-dev | 06:04 | |
*** slaweq has quit IRC | 06:05 | |
*** lpetrut has joined #openstack-dev | 06:05 | |
*** yamamoto has joined #openstack-dev | 06:05 | |
*** dhajare has joined #openstack-dev | 06:06 | |
*** rwsu has joined #openstack-dev | 06:07 | |
*** junbo has quit IRC | 06:12 | |
*** takamatsu has joined #openstack-dev | 06:14 | |
*** junbo has joined #openstack-dev | 06:15 | |
*** dhajare has quit IRC | 06:20 | |
*** renmak_ has quit IRC | 06:21 | |
*** renmak__ has quit IRC | 06:21 | |
*** renmak_ has joined #openstack-dev | 06:21 | |
*** renmak__ has joined #openstack-dev | 06:21 | |
*** Poornima has joined #openstack-dev | 06:22 | |
*** dhajare has joined #openstack-dev | 06:23 | |
*** thefallenlad has joined #openstack-dev | 06:24 | |
*** renmak__ has quit IRC | 06:26 | |
*** renmak_ has quit IRC | 06:26 | |
*** renmak__ has joined #openstack-dev | 06:26 | |
*** renmak_ has joined #openstack-dev | 06:26 | |
*** thorst has joined #openstack-dev | 06:26 | |
*** renmak_ has quit IRC | 06:27 | |
*** renmak__ has quit IRC | 06:27 | |
*** jamesmcarthur has joined #openstack-dev | 06:28 | |
*** tnovacik has quit IRC | 06:29 | |
*** slaweq has joined #openstack-dev | 06:29 | |
*** thorst has quit IRC | 06:31 | |
*** jamesmcarthur has quit IRC | 06:32 | |
*** diablo_rojo has quit IRC | 06:33 | |
*** saggi has quit IRC | 06:33 | |
*** yuchenghui has joined #openstack-dev | 06:37 | |
*** dhajare has quit IRC | 06:37 | |
*** saggi has joined #openstack-dev | 06:39 | |
*** sridharg has quit IRC | 06:39 | |
*** anilvenkata has quit IRC | 06:39 | |
*** hseipp has joined #openstack-dev | 06:40 | |
*** itzikb has quit IRC | 06:40 | |
*** anilvenkata has joined #openstack-dev | 06:41 | |
*** yuchenghui has quit IRC | 06:43 | |
*** rraja has joined #openstack-dev | 06:44 | |
*** sridharg has joined #openstack-dev | 06:46 | |
*** linxuhua has quit IRC | 06:48 | |
*** AnilV4 has joined #openstack-dev | 06:50 | |
*** jamesbenson has joined #openstack-dev | 06:54 | |
ttx | message moderated through | 06:55 |
*** vshah has joined #openstack-dev | 06:55 | |
*** lpetrut has quit IRC | 06:57 | |
ttx | fungi: I did not receive the notification, probably a side effect of blackholing openstack-tc-owner | 06:58 |
*** sridharg has quit IRC | 06:59 | |
*** jamesbenson has quit IRC | 06:59 | |
*** vshah has quit IRC | 07:00 | |
*** tobberydberg has joined #openstack-dev | 07:00 | |
*** sridharg has joined #openstack-dev | 07:00 | |
*** linxuhua has joined #openstack-dev | 07:02 | |
*** mperezco has joined #openstack-dev | 07:06 | |
*** sridharg has quit IRC | 07:07 | |
*** anilvenkata has quit IRC | 07:07 | |
*** anilvenkata has joined #openstack-dev | 07:07 | |
*** shardy has joined #openstack-dev | 07:09 | |
*** sridharg has joined #openstack-dev | 07:09 | |
*** psachin has quit IRC | 07:12 | |
*** tesseract has joined #openstack-dev | 07:13 | |
*** tserong has quit IRC | 07:14 | |
*** epopt has quit IRC | 07:14 | |
*** sridharg has quit IRC | 07:17 | |
*** anilvenkata has quit IRC | 07:17 | |
*** stanchan has joined #openstack-dev | 07:18 | |
*** anilvenkata has joined #openstack-dev | 07:19 | |
*** sridharg has joined #openstack-dev | 07:19 | |
*** thefallenlad has quit IRC | 07:21 | |
*** markmc has quit IRC | 07:21 | |
*** gamado has joined #openstack-dev | 07:24 | |
*** stanchan has quit IRC | 07:28 | |
*** aarefiev_afk is now known as aarefiev | 07:29 | |
*** dizquierdo has joined #openstack-dev | 07:36 | |
*** anilvenkata has quit IRC | 07:47 | |
*** linxuhua has quit IRC | 07:48 | |
*** anilvenkata has joined #openstack-dev | 07:50 | |
*** gfidente has joined #openstack-dev | 07:53 | |
*** makowals has quit IRC | 07:56 | |
*** makowals has joined #openstack-dev | 08:00 | |
*** linxuhua has joined #openstack-dev | 08:01 | |
*** mgoddard has joined #openstack-dev | 08:02 | |
*** hseipp has quit IRC | 08:06 | |
*** radez has quit IRC | 08:09 | |
*** hseipp has joined #openstack-dev | 08:14 | |
*** mriedem has quit IRC | 08:16 | |
*** electrofelix has joined #openstack-dev | 08:19 | |
*** dsariel has joined #openstack-dev | 08:20 | |
*** lucas-afk is now known as lucasagomes | 08:25 | |
*** sreenath89 has joined #openstack-dev | 08:27 | |
*** thorst has joined #openstack-dev | 08:27 | |
*** yamamoto has quit IRC | 08:27 | |
*** yamamoto has joined #openstack-dev | 08:28 | |
*** psachin has joined #openstack-dev | 08:29 | |
sreenath89 | Hi | 08:29 |
sreenath89 | Has anyone done anything like -a plan management system in openstack using cloudkitty | 08:30 |
sreenath89 | By plans , i mean something like Gold, platinum, silver etc for customers and allowing them to subscribe to them | 08:31 |
*** cablekevin has quit IRC | 08:31 | |
*** paramite has joined #openstack-dev | 08:31 | |
*** yamamoto has quit IRC | 08:31 | |
*** yamamoto has joined #openstack-dev | 08:32 | |
*** thorst has quit IRC | 08:32 | |
*** snica_away is now known as snica | 08:32 | |
*** armaan has quit IRC | 08:33 | |
*** armaan has joined #openstack-dev | 08:33 | |
*** cablekevin has joined #openstack-dev | 08:36 | |
*** cablekevin has quit IRC | 08:36 | |
*** dizquierdo has quit IRC | 08:37 | |
*** ekuris has quit IRC | 08:37 | |
*** johnjiui has joined #openstack-dev | 08:37 | |
*** mperezco has quit IRC | 08:42 | |
*** Poornima has quit IRC | 08:43 | |
*** Poornima has joined #openstack-dev | 08:43 | |
*** mperezco has joined #openstack-dev | 08:47 | |
*** sreenathmenon has joined #openstack-dev | 08:47 | |
*** jtomasek has joined #openstack-dev | 08:47 | |
*** Poornima has quit IRC | 08:51 | |
*** eroux has joined #openstack-dev | 08:51 | |
jamespage | tinwood, icey: morning - I want to tag a final milestone for nova-lxd and then cut a stable/pike branch for release candidates this week please | 08:53 |
jamespage | thoughts? | 08:53 |
icey | jamespage: there are a couple of useful seeming reviews up that I'd like to get a look at before cutting it off, otherwise +1 | 08:53 |
tinwood | icey, which ones? | 08:54 |
*** ekuris has joined #openstack-dev | 08:54 | |
*** makowals has quit IRC | 08:54 | |
icey | https://review.openstack.org/#/c/490401/ needs another review, https://review.openstack.org/#/c/490760/ just landed | 08:55 |
icey | so just the first now :) | 08:55 |
icey | tinwood: jamespage ^ | 08:55 |
*** mgoddard has quit IRC | 08:55 | |
tinwood | icey, :) | 08:56 |
*** limao_ has quit IRC | 08:56 | |
*** makowals has joined #openstack-dev | 08:58 | |
jamespage | icey, tinwood: nice if those two bugs included some unit tests... | 08:58 |
*** Poornima has joined #openstack-dev | 08:58 | |
tinwood | jamespage, icey, yes, I was thinking that too. | 08:58 |
*** mgoddard has joined #openstack-dev | 08:59 | |
*** eroux has quit IRC | 09:00 | |
*** e0ne has joined #openstack-dev | 09:01 | |
*** eroux has joined #openstack-dev | 09:05 | |
*** linxuhua has quit IRC | 09:06 | |
*** ansmith has quit IRC | 09:08 | |
*** yuchenghui has joined #openstack-dev | 09:15 | |
*** gongysh has quit IRC | 09:19 | |
*** yuchenghui has quit IRC | 09:20 | |
*** mgoddard has quit IRC | 09:20 | |
*** linxuhua has joined #openstack-dev | 09:21 | |
*** ansmith has joined #openstack-dev | 09:22 | |
*** jamesmcarthur has joined #openstack-dev | 09:28 | |
*** etingof has quit IRC | 09:31 | |
*** jamesmcarthur has quit IRC | 09:32 | |
*** sree has quit IRC | 09:34 | |
*** marios has quit IRC | 09:34 | |
*** marios has joined #openstack-dev | 09:34 | |
*** sree has joined #openstack-dev | 09:34 | |
*** cdent has joined #openstack-dev | 09:35 | |
*** gongysh has joined #openstack-dev | 09:37 | |
*** linxuhua has quit IRC | 09:38 | |
*** sree has quit IRC | 09:39 | |
*** linxuhua has joined #openstack-dev | 09:40 | |
*** sree has joined #openstack-dev | 09:40 | |
*** dalgaaf has quit IRC | 09:41 | |
*** markvoelker has quit IRC | 09:42 | |
*** dizquierdo has joined #openstack-dev | 09:44 | |
*** dalgaaf has joined #openstack-dev | 09:45 | |
*** linxuhua has quit IRC | 09:48 | |
*** sdague has joined #openstack-dev | 09:50 | |
*** mvk_ has joined #openstack-dev | 10:02 | |
*** tovin07_ has quit IRC | 10:02 | |
*** mvk has quit IRC | 10:05 | |
*** armaan has quit IRC | 10:07 | |
*** shardy has quit IRC | 10:08 | |
*** armaan has joined #openstack-dev | 10:08 | |
*** armaan has quit IRC | 10:10 | |
*** armaan has joined #openstack-dev | 10:10 | |
*** Poornima has quit IRC | 10:11 | |
*** shardy has joined #openstack-dev | 10:11 | |
*** vuntz has quit IRC | 10:12 | |
*** mgoddard has joined #openstack-dev | 10:13 | |
*** vuntz has joined #openstack-dev | 10:14 | |
*** vuntz has quit IRC | 10:14 | |
*** vuntz has joined #openstack-dev | 10:14 | |
*** yamamoto has quit IRC | 10:21 | |
*** lpetrut has joined #openstack-dev | 10:22 | |
*** yamamoto has joined #openstack-dev | 10:25 | |
*** armaan has quit IRC | 10:26 | |
*** Poornima has joined #openstack-dev | 10:27 | |
*** yamamoto has quit IRC | 10:28 | |
*** yamamoto has joined #openstack-dev | 10:28 | |
*** thorst has joined #openstack-dev | 10:28 | |
*** ekuris has quit IRC | 10:29 | |
*** jamesbenson has joined #openstack-dev | 10:31 | |
*** thorst has quit IRC | 10:33 | |
*** dtantsur|afk is now known as dtantsur | 10:35 | |
*** sree has quit IRC | 10:35 | |
*** jamesbenson has quit IRC | 10:35 | |
*** armaan has joined #openstack-dev | 10:35 | |
*** sree has joined #openstack-dev | 10:35 | |
*** Poornima has quit IRC | 10:36 | |
*** armaan has quit IRC | 10:39 | |
*** zhurong has quit IRC | 10:39 | |
*** sree has quit IRC | 10:40 | |
*** yamamoto has quit IRC | 10:41 | |
*** linxuhua has joined #openstack-dev | 10:42 | |
*** itzikb has joined #openstack-dev | 10:44 | |
*** ekuris has joined #openstack-dev | 10:44 | |
*** iyamahat has joined #openstack-dev | 10:45 | |
*** iyamahat has quit IRC | 10:45 | |
*** iyamahat has joined #openstack-dev | 10:45 | |
*** yamahata has quit IRC | 10:48 | |
*** iyamahat has quit IRC | 10:50 | |
*** rwsu has quit IRC | 10:53 | |
*** ansmith has quit IRC | 10:55 | |
*** akrivoka has joined #openstack-dev | 10:56 | |
*** jkilpatr has joined #openstack-dev | 10:59 | |
*** baojg has joined #openstack-dev | 11:00 | |
*** gongysh has quit IRC | 11:01 | |
*** mkrcmari__ has joined #openstack-dev | 11:01 | |
*** psachin has quit IRC | 11:03 | |
*** mvk_ has quit IRC | 11:04 | |
*** baojg has quit IRC | 11:05 | |
*** hseipp has quit IRC | 11:05 | |
*** Poornima has joined #openstack-dev | 11:08 | |
*** yamamoto has joined #openstack-dev | 11:09 | |
*** SaltySolomon has quit IRC | 11:11 | |
*** armaan has joined #openstack-dev | 11:11 | |
*** armaan has quit IRC | 11:16 | |
*** dhajare has joined #openstack-dev | 11:20 | |
*** yamamoto_ has joined #openstack-dev | 11:20 | |
*** linxuhua has quit IRC | 11:24 | |
*** yamamoto has quit IRC | 11:24 | |
*** mkrcmari__ has quit IRC | 11:28 | |
*** mkrcmari__ has joined #openstack-dev | 11:29 | |
*** sshnaidm|off has joined #openstack-dev | 11:34 | |
*** SaltySolomon has joined #openstack-dev | 11:36 | |
*** sshnaidm|off has quit IRC | 11:39 | |
*** sshnaidm|off has joined #openstack-dev | 11:39 | |
*** dhajare has quit IRC | 11:39 | |
*** dhajare has joined #openstack-dev | 11:39 | |
*** lucasagomes is now known as lucas-hungry | 11:42 | |
*** ikhan has joined #openstack-dev | 11:51 | |
*** gkadam has quit IRC | 11:52 | |
*** hseipp has joined #openstack-dev | 11:53 | |
*** two_oes has joined #openstack-dev | 11:55 | |
*** esberglu has joined #openstack-dev | 11:59 | |
*** morazi has joined #openstack-dev | 12:01 | |
*** thorst has joined #openstack-dev | 12:02 | |
*** esberglu has quit IRC | 12:04 | |
*** jtomasek has quit IRC | 12:05 | |
*** tuanluong has quit IRC | 12:06 | |
*** gamado has quit IRC | 12:06 | |
*** dhajare has quit IRC | 12:07 | |
*** sree has joined #openstack-dev | 12:09 | |
*** dhajare has joined #openstack-dev | 12:10 | |
*** sree has quit IRC | 12:13 | |
*** rwsu has joined #openstack-dev | 12:19 | |
*** sshnaidm|off is now known as sshnaidm | 12:19 | |
*** baojg has joined #openstack-dev | 12:20 | |
*** sree has joined #openstack-dev | 12:20 | |
*** rwsu has quit IRC | 12:23 | |
*** shardy has quit IRC | 12:23 | |
*** dhajare has quit IRC | 12:24 | |
*** shardy has joined #openstack-dev | 12:25 | |
*** edmondsw has joined #openstack-dev | 12:27 | |
*** nplanel has quit IRC | 12:31 | |
*** slaweq has quit IRC | 12:31 | |
*** ioggstream has joined #openstack-dev | 12:31 | |
*** slaweq has joined #openstack-dev | 12:32 | |
*** lucas-hungry is now known as lucasagomes | 12:32 | |
*** ansmith has joined #openstack-dev | 12:34 | |
*** AnilV4 has quit IRC | 12:35 | |
*** dhajare has joined #openstack-dev | 12:36 | |
*** slaweq has quit IRC | 12:36 | |
*** karthiks has quit IRC | 12:37 | |
*** AnilV4 has joined #openstack-dev | 12:37 | |
*** sshnaidm is now known as sshnaidm|afk | 12:38 | |
*** AnilV4 has quit IRC | 12:43 | |
*** mriedem has joined #openstack-dev | 12:45 | |
*** mkrcmari__ has quit IRC | 12:46 | |
*** two_oes has quit IRC | 12:49 | |
*** slaweq has joined #openstack-dev | 12:51 | |
*** vhosakot has joined #openstack-dev | 12:52 | |
*** mvk has joined #openstack-dev | 12:54 | |
*** markmc has joined #openstack-dev | 12:55 | |
*** Drankis has joined #openstack-dev | 12:56 | |
Drankis | efried, hello | 12:57 |
efried | Hi Drankis | 12:57 |
*** mgoddard has quit IRC | 12:57 | |
efried | To work on stable branches in general, you should be able to create topic branches based on those stable branches the same way you would for master. | 12:57 |
efried | However, usually if you're backporting a change from master, you'll want to cherry-pick it from the master branch. | 12:57 |
efried | Is that possible in this case? | 12:58 |
*** jrist has joined #openstack-dev | 12:58 | |
Drankis | efried, it is not possible to backport from master, because code in Ocata are rewriten. | 12:59 |
efried | Drankis Is it possible to backport from ocata? | 12:59 |
*** qlixed has joined #openstack-dev | 12:59 | |
*** esberglu has joined #openstack-dev | 13:00 | |
*** dhajare has quit IRC | 13:00 | |
Drankis | efried, no, there are not any fixes for that bug, instead rewriten code in newest releases | 13:00 |
efried | Gotcha. | 13:00 |
efried | Okay, so you want to propose a completely new change set against the newton release (presumably tagged with that same bug) | 13:00 |
Drankis | efried, yes. | 13:01 |
efried | Here's how I do it (though I'm sure there's a way to skip/consolidate some of these steps) | 13:01 |
efried | First, make sure I have a local branch that's tracked against newton. If I don't, create it, e.g. git checkout -b newton origin/stable/newton | 13:02 |
efried | Now 'newton' is my local stable branch, and I'm sitting in it. | 13:02 |
efried | Then I'd want to make sure it's up to date: git pull | 13:02 |
efried | Then I check out my topic branch I want to do my development on: git checkout -b bug/123456 | 13:02 |
efried | Then do my changes, git commit and git review as usual. | 13:03 |
Drankis | efried, ok, thanks, will try. | 13:03 |
efried | Uh, it's possible that you have to say git review stable/newton | 13:03 |
Drankis | Btw, I don't know why, but when I commit, I don't have automatic created Change-Id :/ | 13:04 |
efried | Hm, are you using a really old version of git or git-review? | 13:04 |
Drankis | git version 2.7.4 | 13:05 |
Drankis | git-review version 1.25.0 | 13:05 |
efried | Drankis Try running git review -s in the repository in question, before you do your commit. The -s option does some setup, puts a hook into your git commit command to add the Change-Id. | 13:06 |
Drankis | efried, yes, I tried, but without success | 13:07 |
efried | Boo, not sure what to do about that. | 13:08 |
Drankis | I tried also git commit --amend but then only opens commit message with previsous commit | 13:08 |
sdague | Drankis: yes, but it's implemented as a git commit hook | 13:08 |
sdague | it will do it on save of commit message | 13:08 |
Drankis | sdague, oh, I see, just write message and Change-Id will be appended? | 13:09 |
sdague | Drankis: yes | 13:09 |
*** aludwar has quit IRC | 13:09 | |
Drankis | sdague, thanks, will try! | 13:09 |
sdague | or if something went wrong, git review will do it when you push with it | 13:09 |
*** lucasxu has joined #openstack-dev | 13:09 | |
sdague | or gerrit will reject it | 13:09 |
*** achampion has quit IRC | 13:09 | |
sdague | git show after the git commit --amend and see what it says | 13:09 |
*** aludwar has joined #openstack-dev | 13:10 | |
sdague | Drankis: if that doesn't all work, please put together a step by step of what you are doing, every command line, including the initial clone, and that could be debugged | 13:10 |
*** ansmith_ has joined #openstack-dev | 13:14 | |
*** carter_1 has joined #openstack-dev | 13:15 | |
*** kylek3h has joined #openstack-dev | 13:15 | |
*** baoli has joined #openstack-dev | 13:15 | |
Drankis | sdague, thanks, it works! | 13:15 |
sdague | Drankis: cool | 13:15 |
sdague | Drankis: and typically if you are trying to backport a bugfix that fixed by master changes that aren't backportable, you reference all the relevant master commits that made those changes | 13:16 |
sdague | so that when reviewing the stable land reviewers can ensure that the behavior going into stable is going to be forward compatible with what's in master | 13:16 |
*** etingof has joined #openstack-dev | 13:17 | |
*** jcoufal has joined #openstack-dev | 13:17 | |
Drankis | sdague, yeah, I read documentation about that and efried pointed to that. But this bug appears in Newton release, and code in newest releases are rewriten. | 13:19 |
*** cartik has joined #openstack-dev | 13:21 | |
*** vhosakot has quit IRC | 13:21 | |
sdague | Drankis: newton is in security / critical fix phase only now | 13:21 |
*** Poornima has quit IRC | 13:21 | |
*** vhosakot has joined #openstack-dev | 13:21 | |
*** bobh has joined #openstack-dev | 13:24 | |
Drankis | sdague, I see. For me it is quite critical, so could be that it will not be added to upstream? | 13:24 |
*** snica is now known as snica_away | 13:26 | |
*** carter_1 has quit IRC | 13:26 | |
*** mgoddard has joined #openstack-dev | 13:28 | |
*** hseipp has quit IRC | 13:29 | |
efried | Drankis What's the repo? Link to the bug report? | 13:29 |
Drankis | https://bugs.launchpad.net/keystone/+bug/1709801 | 13:30 |
openstack | Launchpad bug 1709801 in OpenStack Identity (keystone) "Domain scope auth fails when use endpoint filter" [Undecided,New] - Assigned to Martins Jakubovics (martins-k) | 13:30 |
*** jaypipes has joined #openstack-dev | 13:30 | |
*** Poornima has joined #openstack-dev | 13:33 | |
*** zaitcev has joined #openstack-dev | 13:35 | |
efried | Drankis Okay, you may want to go back to -keystone and ask 'em whether they would consider the fix for newton. | 13:35 |
Drankis | efried, ok, thanks | 13:35 |
efried | good luck | 13:35 |
*** snica_away is now known as snica | 13:37 | |
*** snuffkin has quit IRC | 13:38 | |
*** apuimedo has left #openstack-dev | 13:39 | |
*** rwsu has joined #openstack-dev | 13:39 | |
*** snuffkin has joined #openstack-dev | 13:41 | |
*** ppiela has quit IRC | 13:42 | |
*** jamesmcarthur has joined #openstack-dev | 13:51 | |
*** p4tux has joined #openstack-dev | 13:51 | |
*** rwsu has quit IRC | 13:52 | |
*** marst_ has joined #openstack-dev | 13:54 | |
*** achampion has joined #openstack-dev | 13:55 | |
*** rwsu has joined #openstack-dev | 13:55 | |
*** vhosakot has quit IRC | 13:56 | |
*** vhosakot has joined #openstack-dev | 13:57 | |
*** gouthamr has joined #openstack-dev | 14:00 | |
*** Poornima has quit IRC | 14:00 | |
*** Poornima has joined #openstack-dev | 14:00 | |
*** gongysh has joined #openstack-dev | 14:02 | |
*** gongysh has quit IRC | 14:03 | |
*** cartik has quit IRC | 14:05 | |
*** awaugama has joined #openstack-dev | 14:06 | |
*** p4tux has left #openstack-dev | 14:06 | |
*** rwsu has quit IRC | 14:07 | |
*** jamesbenson has joined #openstack-dev | 14:07 | |
*** cablekevin has joined #openstack-dev | 14:09 | |
*** spzala has joined #openstack-dev | 14:10 | |
*** jamesbenson has quit IRC | 14:11 | |
*** vnogin has joined #openstack-dev | 14:12 | |
cdent | dtantsur: [t 1zwe] | 14:17 |
purplerbot | <dtantsur> no, no idea [2017-08-10 14:16:30.992685] [n 1zwe] | 14:17 |
dtantsur | Oo | 14:17 |
*** sree has quit IRC | 14:18 | |
*** slaweq has quit IRC | 14:19 | |
*** jkilpatr has quit IRC | 14:20 | |
*** jkilpatr has joined #openstack-dev | 14:20 | |
*** jathan has joined #openstack-dev | 14:20 | |
*** radez has joined #openstack-dev | 14:25 | |
*** sridharg has quit IRC | 14:26 | |
*** nkinder has joined #openstack-dev | 14:26 | |
*** lbragstad has quit IRC | 14:28 | |
*** epopt has joined #openstack-dev | 14:30 | |
*** tobberyd_ has joined #openstack-dev | 14:32 | |
*** donghao has joined #openstack-dev | 14:35 | |
*** zaitcev has quit IRC | 14:35 | |
*** tobberydberg has quit IRC | 14:36 | |
*** spzala has quit IRC | 14:37 | |
*** tobberyd_ has quit IRC | 14:37 | |
*** achampion has quit IRC | 14:37 | |
*** zaitcev has joined #openstack-dev | 14:38 | |
*** priteau has joined #openstack-dev | 14:39 | |
*** achampion has joined #openstack-dev | 14:45 | |
*** akrivoka has quit IRC | 14:45 | |
*** yamahata has joined #openstack-dev | 14:46 | |
*** achampion has quit IRC | 14:49 | |
*** roolebo has joined #openstack-dev | 14:50 | |
*** PsionTheory has joined #openstack-dev | 14:50 | |
*** armax has joined #openstack-dev | 14:53 | |
*** makowals_ has joined #openstack-dev | 14:57 | |
*** renmak__ has joined #openstack-dev | 14:58 | |
*** renmak_ has joined #openstack-dev | 14:58 | |
*** makowals has quit IRC | 14:58 | |
*** akrivoka has joined #openstack-dev | 14:59 | |
*** lbragstad has joined #openstack-dev | 14:59 | |
*** vshah has joined #openstack-dev | 14:59 | |
*** sree has joined #openstack-dev | 15:00 | |
*** jamesmcarthur has quit IRC | 15:00 | |
*** felipemonteiro has joined #openstack-dev | 15:00 | |
*** achampion has joined #openstack-dev | 15:02 | |
*** vshah has quit IRC | 15:03 | |
*** vnogin has quit IRC | 15:04 | |
*** morazi has quit IRC | 15:04 | |
*** anilvenkata is now known as anilvenkata|AFK | 15:04 | |
*** jaypipes has quit IRC | 15:05 | |
*** jaypipes has joined #openstack-dev | 15:05 | |
*** vnogin has joined #openstack-dev | 15:07 | |
*** achampion has quit IRC | 15:07 | |
*** yamamoto_ has quit IRC | 15:08 | |
*** dhajare has joined #openstack-dev | 15:08 | |
*** yamamoto has joined #openstack-dev | 15:10 | |
*** slaweq has joined #openstack-dev | 15:10 | |
*** jamesmcarthur has joined #openstack-dev | 15:10 | |
*** yamamoto has quit IRC | 15:11 | |
*** xemdetia has joined #openstack-dev | 15:11 | |
*** achampion has joined #openstack-dev | 15:11 | |
*** hareesh has quit IRC | 15:12 | |
*** vnogin has quit IRC | 15:12 | |
*** jamesmcarthur has quit IRC | 15:15 | |
*** vuntz has quit IRC | 15:18 | |
*** vuntz has joined #openstack-dev | 15:19 | |
*** vuntz has quit IRC | 15:19 | |
*** vuntz has joined #openstack-dev | 15:19 | |
*** jamesmcarthur has joined #openstack-dev | 15:20 | |
*** annegentle has joined #openstack-dev | 15:21 | |
openstackgerrit | Felipe Monteiro proposed openstack/governance master: Mark Murano complete for Queens policy in code goal https://review.openstack.org/492573 | 15:21 |
*** MattMan has quit IRC | 15:21 | |
*** MattMan has joined #openstack-dev | 15:22 | |
*** spzala has joined #openstack-dev | 15:23 | |
*** annegentle has quit IRC | 15:26 | |
*** renmak__ has quit IRC | 15:27 | |
*** renmak_ has quit IRC | 15:27 | |
*** sdake_ is now known as sdake | 15:27 | |
*** annegentle has joined #openstack-dev | 15:28 | |
openstackgerrit | Emmet Hikory proposed openstack/governance master: Amend leaderless program resolution timeframe https://review.openstack.org/492578 | 15:31 |
*** saggi has quit IRC | 15:31 | |
*** thingee_ has joined #openstack-dev | 15:31 | |
thingee_ | Hey all, ops meet up has started up again. Current topic is migrating from legacy bare metal to containers without starting from scratch https://etherpad.openstack.org/p/MEX-ops-brownfield-to-containerized | 15:33 |
*** mperezco has quit IRC | 15:33 | |
*** saggi has joined #openstack-dev | 15:36 | |
*** e0ne has quit IRC | 15:39 | |
*** saggi has quit IRC | 15:39 | |
*** saggi- has joined #openstack-dev | 15:39 | |
*** saggi- is now known as saggi | 15:39 | |
*** baojg has quit IRC | 15:40 | |
*** baojg has joined #openstack-dev | 15:41 | |
*** baojg has quit IRC | 15:41 | |
*** baojg has joined #openstack-dev | 15:41 | |
*** baojg has quit IRC | 15:42 | |
*** baojg has joined #openstack-dev | 15:42 | |
*** jamesmcarthur has quit IRC | 15:42 | |
*** ppiela has joined #openstack-dev | 15:43 | |
*** baojg has quit IRC | 15:43 | |
*** baojg has joined #openstack-dev | 15:43 | |
*** jamesmcarthur has joined #openstack-dev | 15:43 | |
*** baojg has quit IRC | 15:43 | |
*** baojg has joined #openstack-dev | 15:44 | |
*** baojg has quit IRC | 15:44 | |
*** jamesmcarthur has quit IRC | 15:46 | |
*** rraja has quit IRC | 15:46 | |
*** jamesmcarthur has joined #openstack-dev | 15:46 | |
*** jamesbenson has joined #openstack-dev | 15:48 | |
*** morazi has joined #openstack-dev | 15:48 | |
*** jha_rajesh has joined #openstack-dev | 15:49 | |
jha_rajesh | hi | 15:50 |
jha_rajesh | how do i add myself on mailing list | 15:50 |
jha_rajesh | ?? | 15:50 |
smcginnis | jha_rajesh: Info is here: https://wiki.openstack.org/wiki/Mailing_Lists | 15:51 |
*** hseipp has joined #openstack-dev | 15:51 | |
*** johnjiui has quit IRC | 15:52 | |
*** Poornima has quit IRC | 15:54 | |
*** jha_rajesh has quit IRC | 15:56 | |
*** Openstack_newb has joined #openstack-dev | 15:57 | |
*** vhosakot has quit IRC | 15:58 | |
*** jamesmcarthur has quit IRC | 15:59 | |
*** jamesmcarthur has joined #openstack-dev | 15:59 | |
*** aarefiev is now known as aarefiev_afk | 16:00 | |
*** annegentle has quit IRC | 16:01 | |
*** Openstack_newb has quit IRC | 16:01 | |
*** dklyle is now known as david-lyle | 16:02 | |
*** renmak_ has joined #openstack-dev | 16:04 | |
*** renmak__ has joined #openstack-dev | 16:04 | |
*** jamesmcarthur has quit IRC | 16:05 | |
*** jamesmcarthur has joined #openstack-dev | 16:07 | |
thingee_ | Hey all, ops meet up is discussing logging and monitoring https://etherpad.openstack.org/p/MEX-ops-logging-and-monitoring | 16:08 |
thingee_ | gordc: ^ | 16:08 |
*** Openstack_newb has joined #openstack-dev | 16:09 | |
*** yamamoto has joined #openstack-dev | 16:12 | |
*** mgoddard has quit IRC | 16:14 | |
*** stanchan has joined #openstack-dev | 16:14 | |
*** Drankis has quit IRC | 16:15 | |
*** mgoddard has joined #openstack-dev | 16:15 | |
*** stanchan has left #openstack-dev | 16:16 | |
*** saggi- has joined #openstack-dev | 16:16 | |
*** yamamoto has quit IRC | 16:17 | |
*** eroux has quit IRC | 16:17 | |
*** saggi has quit IRC | 16:19 | |
*** saggi- is now known as saggi | 16:19 | |
*** mriedem is now known as mriedem_away | 16:20 | |
gordc | thingee_: cool cool. thanks for headsup. i'm watching etherpad. | 16:20 |
*** hseipp has quit IRC | 16:21 | |
*** donghao has quit IRC | 16:21 | |
*** tobberydberg has joined #openstack-dev | 16:22 | |
*** eroux has joined #openstack-dev | 16:22 | |
*** mpeterson has quit IRC | 16:23 | |
*** pcaruana has quit IRC | 16:25 | |
*** marios has quit IRC | 16:26 | |
*** tobberydberg has quit IRC | 16:26 | |
*** psachin has joined #openstack-dev | 16:26 | |
*** lucasxu has quit IRC | 16:27 | |
*** lucasagomes is now known as lucas-afk | 16:32 | |
openstackgerrit | Hongbin Lu proposed openstack/governance master: Zun completion of python35 goal https://review.openstack.org/492615 | 16:32 |
*** rcernin has quit IRC | 16:33 | |
*** itzikb has quit IRC | 16:38 | |
*** baojg has joined #openstack-dev | 16:45 | |
*** mgoddard has quit IRC | 16:45 | |
*** rama_y has joined #openstack-dev | 16:46 | |
*** dhajare has quit IRC | 16:48 | |
*** baojg has quit IRC | 16:52 | |
*** jamesmcarthur has quit IRC | 16:52 | |
*** slaweq has quit IRC | 16:53 | |
*** jathan has quit IRC | 16:54 | |
*** marst_ has quit IRC | 16:54 | |
*** marst_ has joined #openstack-dev | 16:54 | |
*** jamesmcarthur has joined #openstack-dev | 16:55 | |
*** jamesbenson has quit IRC | 16:55 | |
*** yamahata has quit IRC | 16:57 | |
*** dtantsur is now known as dtantsur|afk | 17:00 | |
*** baoli has quit IRC | 17:01 | |
*** ppiela_ has joined #openstack-dev | 17:01 | |
*** igordcard is now known as igordc | 17:02 | |
*** Openstack_newb has left #openstack-dev | 17:02 | |
*** jillr has joined #openstack-dev | 17:03 | |
*** baoli has joined #openstack-dev | 17:04 | |
*** ppiela has quit IRC | 17:04 | |
thingee_ | Gordc: seems like if we want potential adoption for telemetry and gnocchi with canonical we need an updated charm. The current charm that jamespage worked on as I understand is still using ceilometer plus mongo dB | 17:04 |
gordc | thingee_: hmm... i vaguely remember seeing something about gnocchi charm but i'll be honest, i don't follow that at all. | 17:05 |
*** tobberydberg has joined #openstack-dev | 17:05 | |
*** jamesbenson has joined #openstack-dev | 17:06 | |
jillr | thingee_: gordc lp:1654217 | 17:06 |
jillr | feature request for such a charm | 17:07 |
thingee_ | gordc: ok, just throwing out ideas because having more promoters who can speak about the new performance aside from dev’s perspective would be awesome :) | 17:07 |
*** electrofelix has quit IRC | 17:08 | |
*** sree has quit IRC | 17:08 | |
gordc | thingee_: you don't trust our graphs? :P | 17:09 |
*** vshah has joined #openstack-dev | 17:09 | |
ildikov | gordc: he just wants more ;) | 17:10 |
*** tobberydberg has quit IRC | 17:10 | |
thingee_ | gordc: i trust your findings. I think it’s different when there are a bunch of +1’s on telemetry‘s name on an etherpad and ops people speaking positive things about and promoting it to new comers | 17:11 |
*** iyamahat has joined #openstack-dev | 17:12 | |
*** marst_ has quit IRC | 17:13 | |
ildikov | thingee_: +1 | 17:13 |
*** annegentle has joined #openstack-dev | 17:14 | |
*** mvk has quit IRC | 17:14 | |
*** iyamahat has quit IRC | 17:15 | |
*** iyamahat has joined #openstack-dev | 17:15 | |
*** jprovazn has quit IRC | 17:15 | |
gordc | thingee_: yep. we need to find a hype-person. probably not me. my sell of gnocchi is: "if you use v2, you'll have a very bad time. if you use v3, you may have a bad time. if you use v4, you shouldn't have a bad time" | 17:16 |
*** jprovazn has joined #openstack-dev | 17:16 | |
*** iyamahat has quit IRC | 17:16 | |
*** iyamahat has joined #openstack-dev | 17:16 | |
*** slaweq has joined #openstack-dev | 17:16 | |
ildikov | gordc: we should be able to put some info into the Admin Guide about the shouldn't have a bad time part | 17:17 |
ildikov | gordc: and warnings about the rest | 17:17 |
smcginnis | ++ | 17:17 |
ildikov | gordc: also some SuperUser articles if you have some shiny data | 17:17 |
ildikov | gordc: I can help, but I will need some guidance as my knowledge became a bit rusty... | 17:18 |
thingee_ | If you’re selling it to new people, don’t even talk about v2 | 17:18 |
ildikov | thingee_: agreed; the note/warning is needed for those who would move from one to the other, or have knowledge about the earlier stages and didn't follow up to the recent | 17:19 |
thingee_ | ildikov: that’s a great idea. What do you think gordc about a super user post that the foundation could promote. You can talk also about the various demo videos and blog posts in that ops meet up etherpad | 17:19 |
gordc | ildikov: sure. i can give feedback. but yeah, we have basically enough resources to do gnocchi dev and docs. nothing for selling | 17:19 |
*** lpetrut has quit IRC | 17:19 | |
thingee_ | Gordc can I start an email convo with our editor/content person for super user? | 17:19 |
*** anilvenkata|AFK is now known as anilvenkata | 17:19 | |
gordc | thingee_: i wish. unfortuantely, people are just adopting mitaka and i think gnocchi v2 is packaged with that. | 17:19 |
thingee_ | Telemetry your selling reason to jump to Ocata or pike soon | 17:20 |
gordc | thingee_: i can try. not sure how much time i'll have (going on PTO tomorrow for 2 weeks ) | 17:20 |
thingee_ | Gordc I help with the release landing page content. Potentially I could pitch some things to promote about telemetry on there too | 17:21 |
thingee_ | Gordc I understand | 17:21 |
gordc | thingee_: might need to target september. but yeah, if you have ideas on what would be interesting, i can try to fill in the blanks. | 17:21 |
thingee_ | If you don’t feel comfortable doing the content, we can figure that out and provide a draft to you and whoever else for corrections | 17:21 |
gordc | either works. | 17:22 |
thingee_ | Maybe at least we could get some selling highlights? 1-2 sentences for a feature link to documentation for more details | 17:22 |
thingee_ | And these can potentially be on the release landing page being highlighted for pike | 17:22 |
*** ansmith has quit IRC | 17:23 | |
thingee_ | Would you be able to give me that information before you leave? | 17:23 |
*** ansmith_ has quit IRC | 17:23 | |
gordc | i think jd and akrzos are planning on doing another talk regarding gnocchi at summit but targetting v4... if it's not accepted can probably get akrzos to give some graphs | 17:24 |
gordc | feature link == what gnocchi does? | 17:24 |
*** baoli has quit IRC | 17:26 | |
thingee_ | When does jd come back? | 17:26 |
*** baoli has joined #openstack-dev | 17:27 | |
*** baoli has quit IRC | 17:27 | |
gordc | next week iirc. | 17:28 |
thingee_ | Gordc ok great. Maybe I can send him an email and cc you about the super user post and highlights for pike messaging | 17:28 |
thingee_ | Hey all, we’re starting the operators meet up discussion for network management and trouble shooting https://etherpad.openstack.org/p/MEX-ops-network-mgmt-and-troubleshooting | 17:29 |
*** jamesmcarthur has quit IRC | 17:29 | |
gordc | thingee_: jillr: this was the gnocchi charm item i was referring to: https://www.openstack.org/summit/sydney-2017/vote-for-speakers#/19716 | 17:29 |
*** jamesmcarthur has joined #openstack-dev | 17:29 | |
gordc | i don't know if that links to same thing for you. you can search on 'new in openstack charms' | 17:29 |
thingee_ | It worked for me | 17:29 |
thingee_ | It doesn’t say much, but good to know for promoting | 17:30 |
jillr | gordc: interesting, thanks - I'll have to see if I can find the code | 17:30 |
gordc | yeah, i'm guessing there's a gnocchi charm that exists or will exist based on that title. | 17:30 |
*** sreenathmenon has quit IRC | 17:31 | |
*** yamahata has joined #openstack-dev | 17:31 | |
jillr | thingee_: if we can actually get switched from mongo to gnocchi I can commit to a blog post on the switch/benfits at some future date | 17:32 |
jamespage | jillr: thingee_, gordc: its all inflight atm - https://review.openstack.org/#/c/489947/ | 17:32 |
jamespage | charm is functional with ceph backend for storage; some details to be worked out re integration with the grafana charm still | 17:33 |
jillr | jamespage++ | 17:33 |
jamespage | yw | 17:33 |
gordc | jamespage: nice. thanks for that. | 17:33 |
*** jamesmcarthur has quit IRC | 17:36 | |
*** baoli has joined #openstack-dev | 17:37 | |
*** shardy has quit IRC | 17:38 | |
*** krtaylor has quit IRC | 17:38 | |
ildikov | jillr: that would be great | 17:39 |
*** ansmith has joined #openstack-dev | 17:39 | |
*** ansmith_ has joined #openstack-dev | 17:39 | |
thingee_ | jamespage: thank you | 17:40 |
thingee_ | jillr: that would be awesome | 17:40 |
thingee_ | jillr: do you mind if I put you in contact with our editor for super user? | 17:41 |
thingee_ | It would be great to have this post from an actual operators perspective | 17:41 |
jillr | thingee_: sure thing. I cant commit to a date on anything yet, but totally down to touch base | 17:42 |
thingee_ | No fluffy post though. Pain points but what’s there so far. | 17:42 |
*** vshah has quit IRC | 17:42 | |
*** ioggstream has quit IRC | 17:42 | |
jillr | oh I can bring the force of pain points on mongo :) | 17:42 |
thingee_ | Sounds good | 17:42 |
jillr | even switching to v2 might see us improvements | 17:43 |
*** diablo_rojo has joined #openstack-dev | 17:43 | |
thingee_ | Yes ideally this post would come after trying gnocchi and v2 | 17:44 |
*** annegentle has quit IRC | 17:44 | |
thingee_ | So you’re blocked on needed the charm done. But looks like that’s in flight according to jamespage | 17:44 |
jillr | yep | 17:45 |
thingee_ | http://media-cache-ak0.pinimg.com/736x/27/85/58/2785580d9024017d8f101ae9cfa692bc.jpg | 17:45 |
thingee_ | Stole from fungi | 17:46 |
*** slaweq_ has joined #openstack-dev | 17:46 | |
*** jamesbenson has quit IRC | 17:46 | |
*** gfidente is now known as gfidente|afk | 17:47 | |
*** SumitNaiksatam has joined #openstack-dev | 17:48 | |
fungi | i can't lay claim to hannibal. he's everyone's hero | 17:48 |
*** mriedem_away is now known as mriedem | 17:48 | |
*** slaweq has quit IRC | 17:50 | |
*** gouthamr_ has joined #openstack-dev | 17:50 | |
*** vshah has joined #openstack-dev | 17:51 | |
*** gouthamr has quit IRC | 17:51 | |
*** lpetrut has joined #openstack-dev | 17:51 | |
smcginnis | I pity the fool that doesn't like Hannibal. | 17:52 |
*** xarses_ has joined #openstack-dev | 17:52 | |
*** spzala has quit IRC | 17:55 | |
*** lpetrut has quit IRC | 17:58 | |
*** dizquierdo has quit IRC | 18:00 | |
*** iyamahat has quit IRC | 18:00 | |
*** iyamahat has joined #openstack-dev | 18:01 | |
*** tobberydberg has joined #openstack-dev | 18:01 | |
*** jamesbenson has joined #openstack-dev | 18:02 | |
*** vshah has quit IRC | 18:06 | |
*** annegentle has joined #openstack-dev | 18:11 | |
*** tobberydberg has quit IRC | 18:12 | |
*** snica is now known as snica_away | 18:13 | |
*** jathan has joined #openstack-dev | 18:13 | |
*** jathan has quit IRC | 18:14 | |
*** vshah has joined #openstack-dev | 18:16 | |
*** vshah_ has joined #openstack-dev | 18:17 | |
*** vshah has quit IRC | 18:17 | |
*** SumitNaiksatam has quit IRC | 18:18 | |
*** renmak__ has quit IRC | 18:21 | |
*** renmak_ has quit IRC | 18:21 | |
*** jamesbenson has quit IRC | 18:23 | |
*** ansmith has quit IRC | 18:30 | |
*** ansmith_ has quit IRC | 18:31 | |
*** jamesbenson has joined #openstack-dev | 18:31 | |
*** krtaylor has joined #openstack-dev | 18:32 | |
*** jathan has joined #openstack-dev | 18:33 | |
*** rcernin has joined #openstack-dev | 18:35 | |
*** jamesbenson has quit IRC | 18:35 | |
*** cdent has quit IRC | 18:41 | |
*** spzala has joined #openstack-dev | 18:42 | |
*** ansmith has joined #openstack-dev | 18:43 | |
*** spzala has quit IRC | 18:43 | |
*** vshah_ has quit IRC | 18:43 | |
*** ansmith_ has joined #openstack-dev | 18:43 | |
*** spzala has joined #openstack-dev | 18:44 | |
*** jamesbenson has joined #openstack-dev | 18:46 | |
*** baojg has joined #openstack-dev | 18:49 | |
*** jamesbenson has quit IRC | 18:50 | |
*** vshah has joined #openstack-dev | 18:50 | |
*** psachin has quit IRC | 18:52 | |
*** anilvenkata has quit IRC | 18:53 | |
*** baojg has quit IRC | 18:54 | |
*** lpetrut has joined #openstack-dev | 18:55 | |
*** vshah has quit IRC | 18:55 | |
*** awaugama has quit IRC | 18:57 | |
*** jamesbenson has joined #openstack-dev | 18:58 | |
*** rcernin has quit IRC | 18:59 | |
*** portdirect is now known as eteppete | 19:02 | |
*** efried is now known as efried_afk | 19:02 | |
*** openstackgerrit has quit IRC | 19:03 | |
*** eteppete is now known as portdirect | 19:03 | |
*** jamesbenson has quit IRC | 19:05 | |
*** itzikb has joined #openstack-dev | 19:05 | |
*** jamesbenson has joined #openstack-dev | 19:06 | |
*** sree has joined #openstack-dev | 19:09 | |
*** baoli has quit IRC | 19:13 | |
*** sree has quit IRC | 19:13 | |
thingee_ | Hey all, ops meet up is starting again. Topic is nfv https://etherpad.openstack.org/p/MEX-ops-meetup | 19:14 |
*** vshah has joined #openstack-dev | 19:14 | |
*** athomas has joined #openstack-dev | 19:16 | |
*** portdirect has quit IRC | 19:17 | |
*** portdirect has joined #openstack-dev | 19:17 | |
*** jathan has quit IRC | 19:18 | |
*** vshah has quit IRC | 19:18 | |
*** vnogin has joined #openstack-dev | 19:19 | |
*** nicolasbock has quit IRC | 19:21 | |
* fungi gets out his decoder ring | 19:21 | |
*** vshah has joined #openstack-dev | 19:24 | |
*** vnogin has quit IRC | 19:24 | |
*** itzikb has quit IRC | 19:27 | |
*** efried_afk is now known as efried | 19:27 | |
*** tnovacik has joined #openstack-dev | 19:27 | |
*** vshah has quit IRC | 19:28 | |
*** slaweq has joined #openstack-dev | 19:33 | |
*** xyang1 has joined #openstack-dev | 19:35 | |
*** jamesbenson has quit IRC | 19:35 | |
*** slaweq_ has quit IRC | 19:36 | |
*** renmak_ has joined #openstack-dev | 19:36 | |
*** renmak__ has joined #openstack-dev | 19:36 | |
*** tobberydberg has joined #openstack-dev | 19:38 | |
*** iyamahat has quit IRC | 19:38 | |
*** iyamahat has joined #openstack-dev | 19:38 | |
thingee_ | jaypipes: blazar and reservations is being discussed. Look for my comment around line 39 https://etherpad.openstack.org/p/MEX-ops-nfv | 19:39 |
*** jamesbenson has joined #openstack-dev | 19:40 | |
*** baoli has joined #openstack-dev | 19:40 | |
*** baoli has quit IRC | 19:41 | |
*** tobberydberg has quit IRC | 19:42 | |
*** vshah has joined #openstack-dev | 19:44 | |
*** jamesbenson has quit IRC | 19:44 | |
*** baoli has joined #openstack-dev | 19:45 | |
*** tnovacik has quit IRC | 19:45 | |
*** mhickey has joined #openstack-dev | 19:46 | |
*** tobberydberg has joined #openstack-dev | 19:47 | |
*** jrist has quit IRC | 19:48 | |
*** jamesbenson has joined #openstack-dev | 19:49 | |
*** e0ne has joined #openstack-dev | 19:50 | |
*** baojg has joined #openstack-dev | 19:51 | |
*** tobberydberg has quit IRC | 19:52 | |
*** lpetrut has quit IRC | 19:54 | |
*** xemdetia has quit IRC | 19:55 | |
*** ppiela has joined #openstack-dev | 19:55 | |
*** baojg has quit IRC | 19:57 | |
*** tobberydberg has joined #openstack-dev | 19:57 | |
*** e0ne has quit IRC | 19:57 | |
*** tnovacik has joined #openstack-dev | 19:58 | |
*** ppiela_ has quit IRC | 19:58 | |
*** paramite has quit IRC | 20:01 | |
*** baoli has quit IRC | 20:07 | |
*** tobberydberg has quit IRC | 20:09 | |
*** jkilpatr has quit IRC | 20:11 | |
*** tnovacik has quit IRC | 20:11 | |
*** aludwar has quit IRC | 20:11 | |
*** aludwar has joined #openstack-dev | 20:13 | |
*** mhickey has quit IRC | 20:14 | |
*** jprovazn has quit IRC | 20:15 | |
*** awaugama has joined #openstack-dev | 20:15 | |
*** tobberydberg has joined #openstack-dev | 20:18 | |
*** jaypipes has quit IRC | 20:20 | |
*** hamzy has quit IRC | 20:24 | |
*** amotoki has quit IRC | 20:24 | |
*** sidx64 has joined #openstack-dev | 20:26 | |
*** ansmith_ has quit IRC | 20:29 | |
*** ansmith has quit IRC | 20:29 | |
*** jcoufal has quit IRC | 20:29 | |
*** sdake is now known as k2so | 20:37 | |
*** pinip has joined #openstack-dev | 20:37 | |
pinip | "devstack" could not determine host ip address local.conf | 20:38 |
pinip | o/ | 20:38 |
*** yusef has joined #openstack-dev | 20:38 | |
pinip | error while installing ./stack.sh | 20:39 |
clarkb | pinip: devstack does its best to know where services should listen but it isn't perfect. you can tell it what the HOST_IP is or figure out why it can't understand your network config and update that | 20:39 |
pinip | clarkb: i gave host_ip inside local.conf | 20:40 |
*** jamesmcarthur has joined #openstack-dev | 20:40 | |
*** aludwar has quit IRC | 20:41 | |
*** aludwar has joined #openstack-dev | 20:42 | |
*** vshah has quit IRC | 20:44 | |
*** annegentle has quit IRC | 20:45 | |
*** esberglu has quit IRC | 20:47 | |
*** pinip has quit IRC | 20:49 | |
*** gouthamr_ has quit IRC | 20:50 | |
*** vshah has joined #openstack-dev | 20:52 | |
*** jamesmcarthur has quit IRC | 20:53 | |
*** baojg has joined #openstack-dev | 20:53 | |
*** jamesmcarthur has joined #openstack-dev | 20:53 | |
*** jamesbenson has quit IRC | 20:54 | |
*** vhosakot has joined #openstack-dev | 20:57 | |
*** baojg has quit IRC | 20:58 | |
*** jamesmcarthur has quit IRC | 20:58 | |
thingee_ | My mistake with blazar. Masahito corrected me that they’re interested in reserving for aggregates to pass hints to the nova scheduler | 20:58 |
thingee_ | Jaypipes ^ | 20:58 |
*** jkilpatr has joined #openstack-dev | 21:01 | |
*** esberglu has joined #openstack-dev | 21:01 | |
*** iyamahat has quit IRC | 21:01 | |
*** rama_y has quit IRC | 21:01 | |
*** tobberydberg has quit IRC | 21:02 | |
*** iyamahat has joined #openstack-dev | 21:02 | |
*** esberglu_ has joined #openstack-dev | 21:02 | |
*** esberglu has quit IRC | 21:02 | |
*** tobberydberg has joined #openstack-dev | 21:02 | |
*** jamesbenson has joined #openstack-dev | 21:04 | |
*** ekuris has quit IRC | 21:04 | |
*** renmak_ has quit IRC | 21:05 | |
*** renmak__ has quit IRC | 21:05 | |
*** tobberydberg has quit IRC | 21:07 | |
*** achampion has quit IRC | 21:08 | |
*** krtaylor has quit IRC | 21:08 | |
*** rama_y has joined #openstack-dev | 21:10 | |
*** baoli has joined #openstack-dev | 21:10 | |
clarkb | rama_y: for ironic tls things are you ready for that to be merged or wanting to wait for after pike branching? | 21:12 |
rama_y | hi clarkb: I posted another test in ironic against devstack-gate with TLSPROXY=1 | 21:14 |
*** mriedem has left #openstack-dev | 21:14 | |
rama_y | I am thinking of a non-voting job as well before merging this. | 21:14 |
*** mriedem has joined #openstack-dev | 21:14 | |
clarkb | rama_y: I odn't think we need a non voting job | 21:15 |
clarkb | if the tests work just do it | 21:15 |
clarkb | (the setup has generally been vetted in many jobs for months now so shouldn't have major issues, they would just be related to ironic which I htink we have covered well) | 21:15 |
rama_y | Here is my test: https://review.openstack.org/#/c/492664/ | 21:15 |
rama_y | depends on https://review.openstack.org/#/c/492661/ | 21:16 |
clarkb | looks like its happy, just grenade failed (which we expect) | 21:16 |
*** vshah has quit IRC | 21:17 | |
rama_y | Yes; but my patch in project-config needs to be narrower as the tests have been done only against master | 21:17 |
*** jamesbenson has quit IRC | 21:18 | |
clarkb | rama_y: tls-proxy is only enabled on master already | 21:19 |
clarkb | rama_y: let me find you a link | 21:19 |
rama_y | Oh yes, clarkb, that's right; I saw it in features.yaml | 21:19 |
clarkb | rama_y: https://git.openstack.org/cgit/openstack-infra/devstack-gate/tree/features.yaml#n202 ya, though it appears ocata and pike include it so we may want to restrict it a bit more | 21:20 |
*** etingof has quit IRC | 21:21 | |
clarkb | rama_y: we may want to talk to tonyb about it, I'd generally be happy to stop running it on ocata and pike as well and just do master until we get it enabled by default. But would want ot make sure the stable release team is comfortable with that | 21:22 |
*** jamesbenson has joined #openstack-dev | 21:23 | |
*** jamesbenson has quit IRC | 21:24 | |
*** gouthamr has joined #openstack-dev | 21:24 | |
rama_y | clarkb, makes sense | 21:24 |
*** thorst has quit IRC | 21:24 | |
*** jamesbenson has joined #openstack-dev | 21:25 | |
*** jamesbenson has quit IRC | 21:26 | |
*** thorst has joined #openstack-dev | 21:27 | |
*** annegentle has joined #openstack-dev | 21:29 | |
*** renmak__ has joined #openstack-dev | 21:30 | |
*** renmak_ has joined #openstack-dev | 21:30 | |
*** ikhan has quit IRC | 21:31 | |
*** thorst has quit IRC | 21:31 | |
*** ikhan has joined #openstack-dev | 21:31 | |
*** athomas has quit IRC | 21:32 | |
*** diablo_rojo has quit IRC | 21:33 | |
*** gfidente|afk is now known as gfidente | 21:34 | |
*** Hypercube32 has joined #openstack-dev | 21:35 | |
*** etingof has joined #openstack-dev | 21:35 | |
*** ikhan has quit IRC | 21:36 | |
*** iyamahat has quit IRC | 21:37 | |
*** spzala has quit IRC | 21:37 | |
*** xemdetia has joined #openstack-dev | 21:37 | |
*** diablo_rojo has joined #openstack-dev | 21:37 | |
*** spzala has joined #openstack-dev | 21:38 | |
*** baoli has quit IRC | 21:38 | |
*** spzala has quit IRC | 21:38 | |
*** baoli has joined #openstack-dev | 21:39 | |
*** spzala has joined #openstack-dev | 21:39 | |
*** vshah has joined #openstack-dev | 21:43 | |
*** jtomasek has joined #openstack-dev | 21:43 | |
*** spzala has quit IRC | 21:44 | |
*** morazi has quit IRC | 21:46 | |
*** bobh has quit IRC | 21:47 | |
*** vshah has quit IRC | 21:47 | |
*** jtomasek has quit IRC | 21:47 | |
*** bobh has joined #openstack-dev | 21:48 | |
*** krtaylor has joined #openstack-dev | 21:49 | |
*** thorst has joined #openstack-dev | 21:49 | |
*** bobh has quit IRC | 21:53 | |
*** xyang1 has quit IRC | 21:54 | |
*** baojg has joined #openstack-dev | 21:54 | |
*** thorst has quit IRC | 21:54 | |
*** gordc has quit IRC | 21:54 | |
*** ikhan has joined #openstack-dev | 21:55 | |
*** gfidente has quit IRC | 21:56 | |
*** aludwar has quit IRC | 21:57 | |
*** sidx64 has quit IRC | 21:57 | |
*** aludwar has joined #openstack-dev | 21:58 | |
*** baojg has quit IRC | 22:01 | |
*** baoli has quit IRC | 22:01 | |
*** tesseract has quit IRC | 22:02 | |
*** baoli has joined #openstack-dev | 22:05 | |
*** ioggstream has joined #openstack-dev | 22:06 | |
*** priteau has quit IRC | 22:07 | |
*** kylek3h has quit IRC | 22:07 | |
*** akrivoka has quit IRC | 22:08 | |
*** vnogin has joined #openstack-dev | 22:13 | |
*** priteau has joined #openstack-dev | 22:15 | |
*** vnogin has quit IRC | 22:18 | |
*** priteau has quit IRC | 22:20 | |
*** takamatsu has quit IRC | 22:23 | |
*** slaweq has quit IRC | 22:23 | |
tonyb | clarkb, rama_y: I'd need time to look into that to find out what the downsides are. | 22:25 |
rama_y | tonyb: thanks. | 22:25 |
*** ansmith has joined #openstack-dev | 22:30 | |
*** tserong has joined #openstack-dev | 22:30 | |
*** ansmith_ has joined #openstack-dev | 22:31 | |
*** felipemonteiro has quit IRC | 22:36 | |
*** xemdetia has quit IRC | 22:46 | |
*** esberglu_ has quit IRC | 22:47 | |
*** yusef has quit IRC | 22:48 | |
*** annegentle has quit IRC | 22:48 | |
*** annegentle has joined #openstack-dev | 22:49 | |
*** etingof has quit IRC | 22:51 | |
*** yamamoto has joined #openstack-dev | 22:51 | |
*** annegentle has quit IRC | 22:53 | |
*** edmondsw has quit IRC | 22:53 | |
*** spzala has joined #openstack-dev | 22:55 | |
*** spzala has quit IRC | 22:55 | |
*** spzala has joined #openstack-dev | 22:55 | |
*** spzala has quit IRC | 22:55 | |
*** spzala has joined #openstack-dev | 22:56 | |
*** spzala has quit IRC | 22:56 | |
*** spzala has joined #openstack-dev | 22:56 | |
*** spzala has quit IRC | 22:56 | |
*** spzala has joined #openstack-dev | 22:57 | |
*** spzala has quit IRC | 22:57 | |
*** baojg has joined #openstack-dev | 22:57 | |
*** spzala has joined #openstack-dev | 22:57 | |
*** spzala has quit IRC | 22:58 | |
*** vhosakot has quit IRC | 22:58 | |
*** vhosakot has joined #openstack-dev | 22:59 | |
*** baojg has quit IRC | 23:02 | |
*** sreenath89 has quit IRC | 23:04 | |
*** annegentle has joined #openstack-dev | 23:05 | |
*** lihi has quit IRC | 23:10 | |
*** dimak has quit IRC | 23:10 | |
*** dimak has joined #openstack-dev | 23:11 | |
*** xarses_ has quit IRC | 23:11 | |
*** lihi has joined #openstack-dev | 23:11 | |
*** gouthamr has quit IRC | 23:12 | |
*** awaugama has quit IRC | 23:12 | |
*** annegentle has quit IRC | 23:13 | |
*** etingof has joined #openstack-dev | 23:23 | |
*** slaweq has joined #openstack-dev | 23:23 | |
*** slaweq has quit IRC | 23:28 | |
*** ioggstream has quit IRC | 23:31 | |
*** yamamoto has quit IRC | 23:33 | |
*** claudiub has quit IRC | 23:35 | |
*** gyee has quit IRC | 23:36 | |
*** gyee has joined #openstack-dev | 23:37 | |
*** thorst has joined #openstack-dev | 23:38 | |
*** yamamoto has joined #openstack-dev | 23:40 | |
*** vhosakot has quit IRC | 23:45 | |
*** sdague has quit IRC | 23:47 | |
*** kbyrne has quit IRC | 23:48 | |
*** baojg has joined #openstack-dev | 23:58 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!