*** haomaiwang has quit IRC | 00:01 | |
*** haomaiwang has joined #openstack-dev | 00:01 | |
*** harshs has quit IRC | 00:01 | |
*** ybathia has quit IRC | 00:03 | |
*** harshs has joined #openstack-dev | 00:03 | |
*** harshs has quit IRC | 00:03 | |
*** ayoung_ has quit IRC | 00:03 | |
*** SumitNaiksatam has quit IRC | 00:04 | |
*** ayoung has quit IRC | 00:07 | |
*** dalgaaf has quit IRC | 00:08 | |
*** annegentle has quit IRC | 00:10 | |
mtreinish | smcginnis: what's up? | 00:11 |
---|---|---|
*** xemdetia has quit IRC | 00:14 | |
*** moravec has joined #openstack-dev | 00:14 | |
smcginnis | mtreinish: Hey! Not sure if you're the right person, but your name was in a comment so I'll start here. ;) | 00:15 |
smcginnis | mtreinish: I have a patch to add a tempest plugin to cinder. | 00:15 |
smcginnis | mtreinish: It appears to be working for the most part. | 00:15 |
mtreinish | smcginnis: why? just push a patch to tempest, cinder tests are totally fair game in tree | 00:16 |
smcginnis | mtreinish: If I do a testr -l (I think that was the command) I do see the dummy test I added to test it out. | 00:16 |
smcginnis | mtreinish: Yeah, we had to talk about it a bit at the midcycle. | 00:16 |
*** nelsnelson has joined #openstack-dev | 00:16 | |
smcginnis | mtreinish: There are some things we want to get tempest coverage for that aren't being accepted in tempest due to them not working in gate with LVM. | 00:16 |
smcginnis | mtreinish: We have some functionality we need covered by our third party CIs. | 00:17 |
smcginnis | mtreinish: My hope is we can start there in-tree in Cinder as a sort of incubator until they mature and are better supported, then migrate them to tempest. | 00:17 |
smcginnis | mtreinish: But my question for you is... | 00:17 |
smcginnis | mtreinish: Most third party CI's run tempest with a regex for any *volume* tests. | 00:18 |
mtreinish | my experience has shown that model doesn't work, because no one bothers migrating it when they have a way to run all there care about | 00:18 |
smcginnis | mtreinish: I put volume in the name of my dummy test to get it to kick off. | 00:18 |
*** moravec has quit IRC | 00:18 | |
smcginnis | mtreinish: But I don't see it being run by anyone. | 00:18 |
*** nelsnels_ has quit IRC | 00:18 | |
smcginnis | mtreinish: Just if I locally explicity try to run it. | 00:18 |
mtreinish | but it hurts users who want to verify a cloud because it makes it more difficult to set things up | 00:18 |
smcginnis | mtreinish: Well, we're kind of in a catch-22 otherwise. | 00:19 |
smcginnis | mtreinish: We want to add coverage, but our patches are getting rejected. | 00:19 |
mtreinish | well the tempest test requirement is that tests have to be shown run in a voting ci to be accepted | 00:19 |
smcginnis | mtreinish: I'm trying to find a compromise that will allow us to work toward that. | 00:19 |
mtreinish | third party should be ok, but there isn't much confidence in those systems for obvious reasons | 00:19 |
smcginnis | mtreinish: voting CI or gate? | 00:19 |
mtreinish | voting CI, third party ci is ok, but no one has ever done that before | 00:20 |
smcginnis | mtreinish: Well, I can track down the patches where that idea was rejected, but in the meantime, any idea why my test wouldn't be run? | 00:20 |
smcginnis | mtreinish: Is discovery performed differently for plugin tests? | 00:21 |
mtreinish | I also strongly question the idea of having features in cinder that don't work in the reference driver impl with lvm, that doesn't seem like a good idea | 00:21 |
mtreinish | because you can't test it on community infra | 00:21 |
smcginnis | Sorry, that boat has sailed. :) | 00:21 |
mtreinish | smcginnis: discovery is done slightly differently but it shouldn't matter for test selection | 00:21 |
*** FunnyLookinHat has quit IRC | 00:22 | |
*** mylu has quit IRC | 00:22 | |
mtreinish | smcginnis: do a testr list-tests to see if your plugin tests are actually there | 00:22 |
mtreinish | also there is 'tempest list-plugin' (or something like that) to show installed plugins | 00:22 |
smcginnis | mtreinish: Yep, it shows up there. | 00:22 |
* smcginnis tring list-plugin | 00:22 | |
mtreinish | ok if it's in list-tests then it's probably an issue with your regex | 00:23 |
mtreinish | because it just does a regex.match against each test in the list | 00:23 |
smcginnis | Yeah, no plugins command I can find, but it definitely shows up in the list of tests. | 00:23 |
smcginnis | mtreinish: So my test is named test_volume_placeholder. | 00:24 |
smcginnis | My CI kicks off with... (looking it up) | 00:24 |
mtreinish | smcginnis: you can do a testr list-tests with a regex and it will show the tests which are matching | 00:24 |
smcginnis | Command: tools/pretty_tox.sh --concurrency=1 ^(?=.*volume)(?!.*test_encrypted_cinder_volumes).* | 00:25 |
smcginnis | mtreinish: Ooo, good tip. I'll try listing with that. ^^ | 00:25 |
smcginnis | My assumption was the first part there would get anything with volume in the name. | 00:25 |
smcginnis | Hmm, get an event not found bash error. testr list-tests "^(?=.*volume)(?!.*test_encrypted_cinder_volumes).*" | 00:27 |
smcginnis | mtreinish: Weird, it shows up if I do testr list-tests "^(?=.*volume).*" | 00:30 |
*** jfran has quit IRC | 00:30 | |
*** zenoway has joined #openstack-dev | 00:31 | |
*** neilus has joined #openstack-dev | 00:32 | |
*** zhiwei has joined #openstack-dev | 00:32 | |
*** bobh has joined #openstack-dev | 00:32 | |
smcginnis | mtreinish: Dang, gotta run. Thanks for the pointers. I'll play around with it some more and see if I can figure it out. | 00:32 |
smcginnis | mtreinish: And look into the cases that prompted this route in the first place. | 00:32 |
smcginnis | mtreinish: Thanks! | 00:32 |
*** rawl has joined #openstack-dev | 00:33 | |
*** smoriya_ has joined #openstack-dev | 00:34 | |
*** zhiwei has quit IRC | 00:34 | |
*** zenoway has quit IRC | 00:35 | |
*** doug-fis_ has joined #openstack-dev | 00:36 | |
*** gaughen has quit IRC | 00:36 | |
*** mss-4 has quit IRC | 00:37 | |
*** vap has joined #openstack-dev | 00:38 | |
*** haomaiw__ has joined #openstack-dev | 00:38 | |
*** dims_ has joined #openstack-dev | 00:39 | |
*** vap_ has quit IRC | 00:40 | |
*** doug-fish has quit IRC | 00:40 | |
*** haomaiwang has quit IRC | 00:40 | |
*** dims has quit IRC | 00:40 | |
*** moravec has joined #openstack-dev | 00:40 | |
*** neilus has quit IRC | 00:41 | |
*** sputnik13 has quit IRC | 00:41 | |
*** shoutm_ has joined #openstack-dev | 00:44 | |
*** angdraug has quit IRC | 00:45 | |
*** shoutm has quit IRC | 00:46 | |
*** gaughen has joined #openstack-dev | 00:51 | |
*** tochi has quit IRC | 00:53 | |
*** moravec has quit IRC | 00:53 | |
*** salv-orl_ has quit IRC | 00:54 | |
*** moravec has joined #openstack-dev | 00:55 | |
*** penick has quit IRC | 00:57 | |
*** harshs has joined #openstack-dev | 00:59 | |
*** mylu has joined #openstack-dev | 00:59 | |
*** haomaiw__ has quit IRC | 01:01 | |
*** haomaiwa_ has joined #openstack-dev | 01:01 | |
*** tochi has joined #openstack-dev | 01:01 | |
*** zenoway has joined #openstack-dev | 01:06 | |
*** eil397 has quit IRC | 01:08 | |
*** xarses has quit IRC | 01:08 | |
*** ayoung has joined #openstack-dev | 01:09 | |
*** zenoway has quit IRC | 01:11 | |
*** galstrom is now known as galstrom_zzz | 01:11 | |
*** pfalleno1 has quit IRC | 01:13 | |
*** comay has quit IRC | 01:16 | |
*** baoli has joined #openstack-dev | 01:19 | |
*** pushkaru has quit IRC | 01:19 | |
*** pushkaru has joined #openstack-dev | 01:19 | |
*** neilus has joined #openstack-dev | 01:22 | |
*** harshs_ has joined #openstack-dev | 01:22 | |
*** baoli has quit IRC | 01:23 | |
*** moravec has quit IRC | 01:23 | |
*** harshs has quit IRC | 01:23 | |
*** harshs_ is now known as harshs | 01:23 | |
*** ianychoi has quit IRC | 01:23 | |
*** rawl has quit IRC | 01:24 | |
*** moravec has joined #openstack-dev | 01:24 | |
*** garthb has quit IRC | 01:24 | |
*** pfallenop has joined #openstack-dev | 01:25 | |
*** pushkaru has quit IRC | 01:25 | |
*** neilus has quit IRC | 01:28 | |
*** tochi has quit IRC | 01:29 | |
*** mrkz has quit IRC | 01:30 | |
*** harshs has quit IRC | 01:30 | |
*** pfallenop has quit IRC | 01:31 | |
*** tochi has joined #openstack-dev | 01:31 | |
*** imandhan has quit IRC | 01:35 | |
*** aaronm has quit IRC | 01:36 | |
*** imandhan has joined #openstack-dev | 01:36 | |
*** piet has joined #openstack-dev | 01:38 | |
*** pushkaru has joined #openstack-dev | 01:40 | |
*** _cjones_ has quit IRC | 01:40 | |
*** imandhan has quit IRC | 01:41 | |
*** zenoway has joined #openstack-dev | 01:42 | |
*** moravec has quit IRC | 01:42 | |
*** raginbajin has quit IRC | 01:42 | |
*** leeantho has quit IRC | 01:42 | |
*** aaronm has joined #openstack-dev | 01:43 | |
*** bharathm has joined #openstack-dev | 01:44 | |
*** moravec has joined #openstack-dev | 01:45 | |
*** raginbajin has joined #openstack-dev | 01:46 | |
*** zenoway has quit IRC | 01:47 | |
*** bharathm has quit IRC | 01:48 | |
*** xarses has joined #openstack-dev | 01:48 | |
*** bharathm has joined #openstack-dev | 01:49 | |
*** noorul` has joined #openstack-dev | 01:50 | |
*** mylu has quit IRC | 01:51 | |
*** armax has joined #openstack-dev | 01:51 | |
*** doug-fis_ has quit IRC | 01:51 | |
*** pfallenop has joined #openstack-dev | 01:51 | |
*** doug-fish has joined #openstack-dev | 01:52 | |
*** doug-fis_ has joined #openstack-dev | 01:53 | |
*** spzala_ has quit IRC | 01:56 | |
*** moravec has quit IRC | 01:56 | |
*** spzala has joined #openstack-dev | 01:56 | |
*** doug-fish has quit IRC | 01:57 | |
*** mylu has joined #openstack-dev | 01:59 | |
*** haomaiwa_ has quit IRC | 02:01 | |
*** spzala has quit IRC | 02:01 | |
*** cwolferh has quit IRC | 02:01 | |
*** haomaiwang has joined #openstack-dev | 02:01 | |
*** spzala has joined #openstack-dev | 02:03 | |
*** pfallenop has quit IRC | 02:03 | |
*** pfallenop has joined #openstack-dev | 02:04 | |
*** mylu_ has joined #openstack-dev | 02:05 | |
*** mylu has quit IRC | 02:05 | |
*** tiswanso has joined #openstack-dev | 02:05 | |
*** noorul` has quit IRC | 02:07 | |
*** Swami has quit IRC | 02:08 | |
*** keedya has joined #openstack-dev | 02:13 | |
*** davidlenwell has quit IRC | 02:18 | |
*** neilus has joined #openstack-dev | 02:18 | |
*** baojg has joined #openstack-dev | 02:18 | |
*** davidlenwell has joined #openstack-dev | 02:19 | |
*** ayoung_ has joined #openstack-dev | 02:19 | |
*** keedya has quit IRC | 02:20 | |
*** pfallenop has quit IRC | 02:20 | |
*** pfallenop has joined #openstack-dev | 02:21 | |
*** keedya has joined #openstack-dev | 02:21 | |
*** eghobo has joined #openstack-dev | 02:21 | |
*** yamamoto_ has joined #openstack-dev | 02:21 | |
*** tiswanso has quit IRC | 02:22 | |
*** zz_dimtruck is now known as dimtruck | 02:22 | |
*** gatekeep has joined #openstack-dev | 02:22 | |
*** tiswanso has joined #openstack-dev | 02:22 | |
*** hanchao has joined #openstack-dev | 02:23 | |
*** davideagnello has quit IRC | 02:23 | |
*** davidlenwell has quit IRC | 02:23 | |
*** baoli has joined #openstack-dev | 02:24 | |
*** davideagnello has joined #openstack-dev | 02:24 | |
*** daemontool has joined #openstack-dev | 02:25 | |
*** davidlenwell has joined #openstack-dev | 02:27 | |
*** piet has quit IRC | 02:27 | |
*** achampion has quit IRC | 02:28 | |
*** haomaiwang has quit IRC | 02:28 | |
*** haomaiwang has joined #openstack-dev | 02:29 | |
*** achampion has joined #openstack-dev | 02:29 | |
*** neilus has quit IRC | 02:30 | |
*** achampion has quit IRC | 02:34 | |
*** zhurong has joined #openstack-dev | 02:35 | |
*** mylu_ has quit IRC | 02:39 | |
*** shoutm has joined #openstack-dev | 02:39 | |
*** mylu has joined #openstack-dev | 02:40 | |
*** shoutm_ has quit IRC | 02:41 | |
*** achanda has joined #openstack-dev | 02:42 | |
*** nwkarsten has quit IRC | 02:43 | |
*** shoutm has quit IRC | 02:46 | |
*** novas0x2a|laptop has quit IRC | 02:49 | |
*** johnbelamaric has joined #openstack-dev | 02:49 | |
*** eghobo_ has joined #openstack-dev | 02:49 | |
*** eghobo has quit IRC | 02:50 | |
*** shoutm has joined #openstack-dev | 02:56 | |
*** ayoung_ has quit IRC | 02:57 | |
*** ayoung has quit IRC | 02:57 | |
*** ayoung has joined #openstack-dev | 02:58 | |
*** hvprash has joined #openstack-dev | 02:58 | |
*** johnbelamaric has quit IRC | 02:59 | |
*** baoli has quit IRC | 03:00 | |
*** haomaiwang has quit IRC | 03:01 | |
*** haomaiwa_ has joined #openstack-dev | 03:01 | |
*** noorul` has joined #openstack-dev | 03:02 | |
*** doug-fis_ has quit IRC | 03:03 | |
*** doug-fish has joined #openstack-dev | 03:04 | |
*** haomaiwa_ has quit IRC | 03:05 | |
*** mylu has quit IRC | 03:06 | |
*** mylu has joined #openstack-dev | 03:06 | |
*** baoli has joined #openstack-dev | 03:06 | |
*** doug-fish has quit IRC | 03:08 | |
*** baoli has quit IRC | 03:09 | |
*** eghobo has joined #openstack-dev | 03:10 | |
*** eghobo_ has quit IRC | 03:10 | |
*** mylu has quit IRC | 03:11 | |
*** mylu has joined #openstack-dev | 03:12 | |
*** cwolferh has joined #openstack-dev | 03:13 | |
*** dimtruck is now known as zz_dimtruck | 03:13 | |
*** noorul` has quit IRC | 03:15 | |
*** nadeem has joined #openstack-dev | 03:16 | |
*** zenoway has joined #openstack-dev | 03:18 | |
*** zz_dimtruck is now known as dimtruck | 03:21 | |
*** zenoway has quit IRC | 03:23 | |
*** gyee has quit IRC | 03:23 | |
*** doug-fish has joined #openstack-dev | 03:24 | |
*** baoli has joined #openstack-dev | 03:24 | |
*** spzala has quit IRC | 03:24 | |
*** spzala has joined #openstack-dev | 03:25 | |
*** baoli has quit IRC | 03:25 | |
*** tochi has quit IRC | 03:27 | |
*** doug-fish has quit IRC | 03:28 | |
*** eghobo has quit IRC | 03:28 | |
*** spzala has quit IRC | 03:29 | |
*** achampion has joined #openstack-dev | 03:29 | |
*** nadeem has quit IRC | 03:30 | |
*** baoli has joined #openstack-dev | 03:30 | |
*** leeantho has joined #openstack-dev | 03:31 | |
*** nadeem has joined #openstack-dev | 03:31 | |
*** dims_ has quit IRC | 03:33 | |
*** piet has joined #openstack-dev | 03:33 | |
*** achampion has quit IRC | 03:35 | |
*** dimtruck is now known as zz_dimtruck | 03:37 | |
*** eghobo has joined #openstack-dev | 03:37 | |
*** shoutm_ has joined #openstack-dev | 03:38 | |
*** eghobo has quit IRC | 03:39 | |
*** baoli has quit IRC | 03:41 | |
*** shoutm has quit IRC | 03:41 | |
*** baoli has joined #openstack-dev | 03:41 | |
*** fnaval has quit IRC | 03:44 | |
*** iyamahat has quit IRC | 03:44 | |
*** yamahata has quit IRC | 03:44 | |
*** piet has quit IRC | 03:45 | |
*** bobh has quit IRC | 03:47 | |
*** tochi has joined #openstack-dev | 03:48 | |
*** jckasper has joined #openstack-dev | 03:49 | |
*** rawl has joined #openstack-dev | 03:50 | |
*** baoli has quit IRC | 03:53 | |
*** baoli has joined #openstack-dev | 03:54 | |
*** zenoway has joined #openstack-dev | 03:54 | |
*** novas0x2a|laptop has joined #openstack-dev | 03:54 | |
*** shoutm has joined #openstack-dev | 03:54 | |
*** shoutm_ has quit IRC | 03:54 | |
*** baoli has quit IRC | 03:55 | |
*** rawl has quit IRC | 03:55 | |
*** baojg has quit IRC | 03:57 | |
*** kacieee has joined #openstack-dev | 03:57 | |
*** zenoway has quit IRC | 03:59 | |
*** achanda has quit IRC | 03:59 | |
*** cwolferh has quit IRC | 04:00 | |
*** hvprash has quit IRC | 04:01 | |
*** keedya has quit IRC | 04:02 | |
*** kacieee has quit IRC | 04:02 | |
*** kacieee has joined #openstack-dev | 04:03 | |
*** km has quit IRC | 04:03 | |
*** imandhan has joined #openstack-dev | 04:03 | |
*** keedya has joined #openstack-dev | 04:03 | |
*** baojg has joined #openstack-dev | 04:03 | |
*** km has joined #openstack-dev | 04:03 | |
*** vgridnev has joined #openstack-dev | 04:04 | |
*** zhurong has quit IRC | 04:08 | |
*** hvprash has joined #openstack-dev | 04:08 | |
*** baojg has quit IRC | 04:08 | |
*** fnaval has joined #openstack-dev | 04:08 | |
*** achampion has joined #openstack-dev | 04:08 | |
*** keedya has quit IRC | 04:10 | |
*** keedya has joined #openstack-dev | 04:11 | |
*** baojg has joined #openstack-dev | 04:11 | |
*** keedya has quit IRC | 04:13 | |
*** alwaysnoone has quit IRC | 04:13 | |
*** kushal has quit IRC | 04:13 | |
*** tochi has quit IRC | 04:14 | |
*** hanchao has quit IRC | 04:16 | |
*** keedya has joined #openstack-dev | 04:16 | |
*** zenoway has joined #openstack-dev | 04:18 | |
*** spandhe has quit IRC | 04:18 | |
*** novas0x2a|laptop has quit IRC | 04:20 | |
*** spandhe has joined #openstack-dev | 04:21 | |
*** zenoway has quit IRC | 04:22 | |
*** jckasper has quit IRC | 04:22 | |
*** jckasper has joined #openstack-dev | 04:23 | |
*** jckasper has quit IRC | 04:24 | |
*** jckasper has joined #openstack-dev | 04:25 | |
*** spzala has joined #openstack-dev | 04:25 | |
*** ssurana has joined #openstack-dev | 04:27 | |
*** 16WAAR2BV has joined #openstack-dev | 04:27 | |
*** baojg has quit IRC | 04:28 | |
*** spzala has quit IRC | 04:30 | |
*** shoutm has quit IRC | 04:34 | |
*** shoutm has joined #openstack-dev | 04:38 | |
*** nplanel has joined #openstack-dev | 04:38 | |
*** baojg has joined #openstack-dev | 04:39 | |
*** AnilV4 has joined #openstack-dev | 04:39 | |
*** negronjl has quit IRC | 04:43 | |
*** negronjl has joined #openstack-dev | 04:46 | |
*** jckasper has quit IRC | 04:46 | |
*** moravec has joined #openstack-dev | 04:47 | |
*** keedya has quit IRC | 04:49 | |
*** keedya has joined #openstack-dev | 04:50 | |
*** jckasper has joined #openstack-dev | 04:52 | |
*** kacieee has quit IRC | 04:53 | |
*** mezcan has joined #openstack-dev | 04:53 | |
*** spandhe has quit IRC | 04:53 | |
*** zenoway has joined #openstack-dev | 04:53 | |
*** moravec has quit IRC | 04:54 | |
*** km__ has joined #openstack-dev | 04:55 | |
*** km has quit IRC | 04:55 | |
*** km__ is now known as Guest24021 | 04:56 | |
*** hacworld has quit IRC | 04:56 | |
*** zenoway has quit IRC | 04:58 | |
*** achanda has joined #openstack-dev | 04:58 | |
*** nadeem has quit IRC | 04:58 | |
*** leeantho has quit IRC | 05:00 | |
*** 16WAAR2BV has quit IRC | 05:01 | |
*** haomaiwang has joined #openstack-dev | 05:01 | |
*** nwkarsten has joined #openstack-dev | 05:04 | |
*** keedya has quit IRC | 05:04 | |
*** dalgaaf has joined #openstack-dev | 05:05 | |
*** salv-orlando has joined #openstack-dev | 05:08 | |
*** jckasper has quit IRC | 05:08 | |
*** cwolferh has joined #openstack-dev | 05:08 | |
*** amotoki has joined #openstack-dev | 05:11 | |
*** numan_ has quit IRC | 05:12 | |
*** mylu has quit IRC | 05:18 | |
*** salv-orlando has quit IRC | 05:18 | |
*** Marga_ has quit IRC | 05:19 | |
*** mylu has joined #openstack-dev | 05:19 | |
*** agireud has quit IRC | 05:20 | |
*** hvprash has quit IRC | 05:21 | |
*** agireud has joined #openstack-dev | 05:23 | |
*** SridharG has joined #openstack-dev | 05:24 | |
*** spzala has joined #openstack-dev | 05:27 | |
*** zenoway has joined #openstack-dev | 05:29 | |
*** piet has joined #openstack-dev | 05:32 | |
*** spzala has quit IRC | 05:32 | |
*** zenoway has quit IRC | 05:33 | |
*** kushal has joined #openstack-dev | 05:38 | |
*** sam_wan has joined #openstack-dev | 05:39 | |
*** shoutm has quit IRC | 05:40 | |
*** mylu has quit IRC | 05:41 | |
sam_wan | Has anyone hit this issue recently? https://bugs.launchpad.net/cinder/+bug/1541732 | 05:41 |
openstack | Launchpad bug 1541732 in Cinder "Validate volume connection failed (error: 'staticmethod' object is not callable)." [Undecided,New] | 05:41 |
*** mylu has joined #openstack-dev | 05:42 | |
*** shoutm has joined #openstack-dev | 05:42 | |
*** spandhe has joined #openstack-dev | 05:43 | |
*** tiswanso has quit IRC | 05:43 | |
*** numan_ has joined #openstack-dev | 05:47 | |
*** Marga_ has joined #openstack-dev | 05:50 | |
*** Marga_ has quit IRC | 05:53 | |
*** Marga_ has joined #openstack-dev | 05:54 | |
*** neilus has joined #openstack-dev | 05:54 | |
*** piet has quit IRC | 05:59 | |
*** neilus has quit IRC | 05:59 | |
*** tochi has joined #openstack-dev | 06:00 | |
*** haomaiwang has quit IRC | 06:01 | |
*** vimal has joined #openstack-dev | 06:01 | |
*** haomaiwang has joined #openstack-dev | 06:01 | |
*** novas0x2a|laptop has joined #openstack-dev | 06:02 | |
*** pfallenop has quit IRC | 06:04 | |
*** zenoway has joined #openstack-dev | 06:04 | |
*** zenoway has quit IRC | 06:09 | |
*** yamamoto_ has quit IRC | 06:09 | |
*** gberginc has joined #openstack-dev | 06:10 | |
*** hvprash has joined #openstack-dev | 06:12 | |
*** novas0x2a|laptop has quit IRC | 06:14 | |
*** pfallenop has joined #openstack-dev | 06:17 | |
*** hvprash has quit IRC | 06:17 | |
*** mylu has quit IRC | 06:18 | |
*** achanda has quit IRC | 06:19 | |
*** achanda has joined #openstack-dev | 06:20 | |
*** tochi has quit IRC | 06:25 | |
*** Slashme has joined #openstack-dev | 06:25 | |
*** NobodyCa1 has joined #openstack-dev | 06:26 | |
*** pfallenop has quit IRC | 06:26 | |
*** pfallenop has joined #openstack-dev | 06:28 | |
*** jb11211 has joined #openstack-dev | 06:28 | |
*** zenoway has joined #openstack-dev | 06:28 | |
*** spzala has joined #openstack-dev | 06:29 | |
*** Slashme has quit IRC | 06:31 | |
*** zenoway has quit IRC | 06:33 | |
*** jb11211 has quit IRC | 06:33 | |
*** hdd has joined #openstack-dev | 06:33 | |
*** NobodyCa1 has quit IRC | 06:34 | |
*** spzala has quit IRC | 06:34 | |
*** tochi has joined #openstack-dev | 06:35 | |
*** xen0 has joined #openstack-dev | 06:38 | |
*** xen0 is now known as xenogear | 06:39 | |
*** xenogear has quit IRC | 06:39 | |
*** xenogear has joined #openstack-dev | 06:39 | |
*** xarses has quit IRC | 06:41 | |
*** yamamoto_ has joined #openstack-dev | 06:44 | |
*** pfallenop has quit IRC | 06:44 | |
*** pfallenop has joined #openstack-dev | 06:44 | |
*** zenoway has joined #openstack-dev | 06:45 | |
*** hdd has quit IRC | 06:45 | |
*** xarses has joined #openstack-dev | 06:45 | |
*** yeylon has joined #openstack-dev | 06:48 | |
*** ssurana has quit IRC | 06:49 | |
*** ssurana has joined #openstack-dev | 06:49 | |
*** zenoway has quit IRC | 06:49 | |
*** ssurana has quit IRC | 06:53 | |
*** zaitcev has quit IRC | 06:55 | |
*** SridharG has quit IRC | 06:56 | |
*** bharathm has quit IRC | 06:57 | |
*** jwcroppe has joined #openstack-dev | 06:58 | |
*** haomaiwang has quit IRC | 07:01 | |
*** haomaiwang has joined #openstack-dev | 07:01 | |
*** bharathm has joined #openstack-dev | 07:03 | |
*** infra-red has joined #openstack-dev | 07:06 | |
*** stevemar has joined #openstack-dev | 07:06 | |
*** baojg has quit IRC | 07:07 | |
*** lpetrut has joined #openstack-dev | 07:08 | |
*** jckasper has joined #openstack-dev | 07:08 | |
*** jbell8 has joined #openstack-dev | 07:10 | |
*** jbell8 has quit IRC | 07:12 | |
*** infra-re_ has joined #openstack-dev | 07:12 | |
*** jbell8 has joined #openstack-dev | 07:12 | |
*** jckasper has quit IRC | 07:13 | |
*** infra-red has quit IRC | 07:14 | |
*** jbell8 has quit IRC | 07:15 | |
*** achampion has quit IRC | 07:15 | |
*** dsariel has joined #openstack-dev | 07:16 | |
*** jbell8 has joined #openstack-dev | 07:16 | |
*** baojg has joined #openstack-dev | 07:16 | |
*** spandhe has quit IRC | 07:20 | |
*** yeylon has quit IRC | 07:24 | |
*** neeti has joined #openstack-dev | 07:27 | |
*** belmoreira has joined #openstack-dev | 07:29 | |
*** e0ne has joined #openstack-dev | 07:30 | |
*** ianw has quit IRC | 07:30 | |
*** yeylon has joined #openstack-dev | 07:30 | |
*** mpavone has joined #openstack-dev | 07:30 | |
*** ianw has joined #openstack-dev | 07:30 | |
*** spzala has joined #openstack-dev | 07:30 | |
*** SridharG has joined #openstack-dev | 07:33 | |
*** infra-red has joined #openstack-dev | 07:35 | |
*** spzala has quit IRC | 07:35 | |
*** kobis has joined #openstack-dev | 07:36 | |
*** ppetit has joined #openstack-dev | 07:37 | |
*** infra-re_ has quit IRC | 07:37 | |
*** dsariel has quit IRC | 07:37 | |
*** pushkaru has quit IRC | 07:38 | |
*** neilus has joined #openstack-dev | 07:43 | |
*** baojg has quit IRC | 07:45 | |
*** jtomasek_ has joined #openstack-dev | 07:45 | |
*** imandhan has quit IRC | 07:45 | |
*** neilus has quit IRC | 07:47 | |
*** vgridnev has quit IRC | 07:54 | |
*** pushkaru has joined #openstack-dev | 07:55 | |
*** baojg has joined #openstack-dev | 07:56 | |
*** tochi has quit IRC | 07:56 | |
*** yeylon has quit IRC | 07:56 | |
*** safchain has joined #openstack-dev | 07:57 | |
*** fgimenez has joined #openstack-dev | 07:58 | |
*** haomaiwang has quit IRC | 08:01 | |
*** yeylon has joined #openstack-dev | 08:01 | |
*** haomaiwang has joined #openstack-dev | 08:01 | |
*** nwkarsten has quit IRC | 08:07 | |
*** zackf has joined #openstack-dev | 08:07 | |
*** zackf has quit IRC | 08:11 | |
*** zackf has joined #openstack-dev | 08:11 | |
*** jtomasek__ has joined #openstack-dev | 08:12 | |
*** achampion has joined #openstack-dev | 08:12 | |
*** shoutm_ has joined #openstack-dev | 08:13 | |
*** shoutm has quit IRC | 08:15 | |
*** doug-fish has joined #openstack-dev | 08:16 | |
*** dgonzalez has quit IRC | 08:19 | |
*** zackf has quit IRC | 08:19 | |
*** jwcroppe has quit IRC | 08:19 | |
*** doug-fish has quit IRC | 08:21 | |
*** pushkaru has quit IRC | 08:21 | |
*** zakora has joined #openstack-dev | 08:21 | |
*** zackf has joined #openstack-dev | 08:24 | |
*** geguileo has joined #openstack-dev | 08:25 | |
*** shoutm_ has quit IRC | 08:26 | |
*** shoutm has joined #openstack-dev | 08:26 | |
*** yeylon has quit IRC | 08:26 | |
*** achampion has quit IRC | 08:26 | |
*** egallen has joined #openstack-dev | 08:26 | |
*** yeylon has joined #openstack-dev | 08:26 | |
*** dgonzalez has joined #openstack-dev | 08:28 | |
*** lpetrut has quit IRC | 08:29 | |
*** doug-fish has joined #openstack-dev | 08:29 | |
*** tochi has joined #openstack-dev | 08:30 | |
*** spzala has joined #openstack-dev | 08:31 | |
*** matrohon has joined #openstack-dev | 08:31 | |
*** doug-fish has quit IRC | 08:34 | |
*** iyamahat has joined #openstack-dev | 08:36 | |
*** spzala has quit IRC | 08:36 | |
*** athomas has joined #openstack-dev | 08:37 | |
*** jbell8 has quit IRC | 08:38 | |
*** jbell8 has joined #openstack-dev | 08:39 | |
*** mikelk has joined #openstack-dev | 08:41 | |
*** iyamahat has quit IRC | 08:42 | |
*** ihrachys has joined #openstack-dev | 08:43 | |
*** salv-orlando has joined #openstack-dev | 08:45 | |
*** zenoway has joined #openstack-dev | 08:46 | |
*** cswang has quit IRC | 08:47 | |
*** yeylon has quit IRC | 08:48 | |
*** cswang has joined #openstack-dev | 08:48 | |
*** salv-orlando has quit IRC | 08:49 | |
*** ihrachys has quit IRC | 08:53 | |
*** mturpin has joined #openstack-dev | 08:54 | |
*** novas0x2a|laptop has joined #openstack-dev | 08:58 | |
*** vgridnev has joined #openstack-dev | 08:58 | |
*** salv-orlando has joined #openstack-dev | 09:00 | |
*** sam_wan has quit IRC | 09:00 | |
*** sam_wan has joined #openstack-dev | 09:00 | |
*** haomaiwang has quit IRC | 09:01 | |
*** armax has quit IRC | 09:01 | |
*** haomaiwa_ has joined #openstack-dev | 09:01 | |
*** astupnikov has joined #openstack-dev | 09:03 | |
*** sam_wan has quit IRC | 09:04 | |
*** sam_wan has joined #openstack-dev | 09:04 | |
*** tochi has quit IRC | 09:05 | |
*** ppetit has quit IRC | 09:05 | |
*** astupnikov has quit IRC | 09:08 | |
*** astupnikov has joined #openstack-dev | 09:08 | |
*** novas0x2a|laptop has quit IRC | 09:08 | |
*** baojg has quit IRC | 09:10 | |
*** eglynn has joined #openstack-dev | 09:10 | |
*** ppetit has joined #openstack-dev | 09:11 | |
*** baojg has joined #openstack-dev | 09:14 | |
*** iyamahat has joined #openstack-dev | 09:14 | |
*** yolanda has quit IRC | 09:14 | |
*** akrivoka has joined #openstack-dev | 09:16 | |
*** openstackgerrit has quit IRC | 09:17 | |
*** blues-man has joined #openstack-dev | 09:17 | |
*** yassine has joined #openstack-dev | 09:17 | |
*** openstackgerrit has joined #openstack-dev | 09:18 | |
*** pnavarro|afk has joined #openstack-dev | 09:19 | |
*** markvoelker has quit IRC | 09:20 | |
*** achampion has joined #openstack-dev | 09:21 | |
*** jordanP has joined #openstack-dev | 09:23 | |
*** ygbo has joined #openstack-dev | 09:23 | |
*** fgimenez has quit IRC | 09:23 | |
*** infra-re_ has joined #openstack-dev | 09:25 | |
*** fgimenez has joined #openstack-dev | 09:25 | |
*** baojg has quit IRC | 09:25 | |
*** achampion has quit IRC | 09:26 | |
*** kertis1 has joined #openstack-dev | 09:26 | |
*** infra-red has quit IRC | 09:28 | |
*** achanda has quit IRC | 09:31 | |
*** neilus has joined #openstack-dev | 09:31 | |
*** spzala has joined #openstack-dev | 09:32 | |
*** ppetit_ has joined #openstack-dev | 09:32 | |
*** ihrachys has joined #openstack-dev | 09:33 | |
*** ppetit has quit IRC | 09:33 | |
*** ppetit_ is now known as ppetit | 09:33 | |
*** ihrachys has quit IRC | 09:35 | |
*** stevemar has quit IRC | 09:35 | |
*** neilus has quit IRC | 09:36 | |
*** stevemar has joined #openstack-dev | 09:36 | |
*** baojg has joined #openstack-dev | 09:36 | |
*** spzala has quit IRC | 09:37 | |
*** astupnikov has quit IRC | 09:37 | |
*** hynekm has joined #openstack-dev | 09:38 | |
*** jprovazn has joined #openstack-dev | 09:39 | |
*** stevemar has quit IRC | 09:40 | |
*** astupnikov has joined #openstack-dev | 09:40 | |
*** hynekm has quit IRC | 09:43 | |
*** ihrachys has joined #openstack-dev | 09:44 | |
*** abregman has joined #openstack-dev | 09:45 | |
*** astupnikov has quit IRC | 09:45 | |
*** astupnikov has joined #openstack-dev | 09:48 | |
*** jbell8 has quit IRC | 09:50 | |
*** ihrachys has quit IRC | 09:51 | |
*** boris-42 has joined #openstack-dev | 09:52 | |
*** shoutm has quit IRC | 09:53 | |
*** ihrachys has joined #openstack-dev | 09:53 | |
*** astupnikov has quit IRC | 09:53 | |
*** eglynn has quit IRC | 09:56 | |
*** kobis has quit IRC | 09:56 | |
*** astupnikov has joined #openstack-dev | 09:56 | |
*** haomaiwa_ has quit IRC | 10:01 | |
*** mvk has quit IRC | 10:01 | |
*** haomaiwang has joined #openstack-dev | 10:01 | |
*** astupnikov has quit IRC | 10:01 | |
*** ihrachys has quit IRC | 10:02 | |
*** astupnikov has joined #openstack-dev | 10:04 | |
*** ihrachys has joined #openstack-dev | 10:05 | |
*** ihrachys has quit IRC | 10:08 | |
*** ihrachys has joined #openstack-dev | 10:08 | |
*** astupnikov has quit IRC | 10:09 | |
*** astupnikov has joined #openstack-dev | 10:12 | |
*** yolanda has joined #openstack-dev | 10:13 | |
*** hvprash has joined #openstack-dev | 10:14 | |
*** baojg has quit IRC | 10:14 | |
*** eglynn has joined #openstack-dev | 10:14 | |
*** yamamoto_ has quit IRC | 10:15 | |
*** baojg has joined #openstack-dev | 10:16 | |
*** astupnikov has quit IRC | 10:17 | |
*** yamamoto_ has joined #openstack-dev | 10:17 | |
*** lpetrut has joined #openstack-dev | 10:17 | |
*** akrivoka has quit IRC | 10:18 | |
*** dalgaaf has quit IRC | 10:18 | |
*** hvprash has quit IRC | 10:18 | |
*** jprovazn has quit IRC | 10:19 | |
*** astupnikov has joined #openstack-dev | 10:20 | |
*** markvoelker has joined #openstack-dev | 10:21 | |
*** rfolco has joined #openstack-dev | 10:22 | |
*** achampion has joined #openstack-dev | 10:22 | |
*** iyamahat has quit IRC | 10:23 | |
*** ihrachys has quit IRC | 10:24 | |
*** bnemec has joined #openstack-dev | 10:25 | |
*** ihrachys has joined #openstack-dev | 10:25 | |
*** astupnikov has quit IRC | 10:25 | |
*** markvoelker has quit IRC | 10:26 | |
*** achampion has quit IRC | 10:27 | |
*** astupnikov has joined #openstack-dev | 10:28 | |
*** mvk has joined #openstack-dev | 10:28 | |
*** ihrachys has quit IRC | 10:30 | |
*** ihrachys has joined #openstack-dev | 10:31 | |
*** spzala has joined #openstack-dev | 10:33 | |
*** astupnikov has quit IRC | 10:33 | |
*** electrofelix has joined #openstack-dev | 10:33 | |
*** ihrachys has quit IRC | 10:36 | |
*** lpetrut has quit IRC | 10:36 | |
*** astupnikov has joined #openstack-dev | 10:36 | |
*** stevemar has joined #openstack-dev | 10:37 | |
*** spzala has quit IRC | 10:37 | |
*** salv-orl_ has joined #openstack-dev | 10:39 | |
*** stevemar has quit IRC | 10:40 | |
*** astupnikov has quit IRC | 10:41 | |
*** salv-orlando has quit IRC | 10:42 | |
*** electrofelix has quit IRC | 10:42 | |
*** electrofelix has joined #openstack-dev | 10:43 | |
*** aysyd has joined #openstack-dev | 10:43 | |
*** astupnikov has joined #openstack-dev | 10:44 | |
*** reed_ has joined #openstack-dev | 10:45 | |
*** blues-man has quit IRC | 10:47 | |
*** astupnikov has quit IRC | 10:49 | |
*** kobis has joined #openstack-dev | 10:52 | |
*** astupnikov has joined #openstack-dev | 10:52 | |
*** blues-man has joined #openstack-dev | 10:53 | |
*** aswadr has joined #openstack-dev | 10:53 | |
*** astupnikov has quit IRC | 10:57 | |
*** e0ne has quit IRC | 10:57 | |
*** astupnikov has joined #openstack-dev | 11:00 | |
*** kobis has quit IRC | 11:00 | |
*** nkinder has joined #openstack-dev | 11:00 | |
*** haomaiwang has quit IRC | 11:01 | |
*** abregman is now known as abregman|afk | 11:01 | |
*** haomaiwang has joined #openstack-dev | 11:01 | |
*** geguileo has quit IRC | 11:01 | |
*** rodrigods has quit IRC | 11:02 | |
*** rodrigods has joined #openstack-dev | 11:02 | |
*** egallen has quit IRC | 11:04 | |
*** astupnikov has quit IRC | 11:05 | |
*** zackf has quit IRC | 11:08 | |
*** astupnikov has joined #openstack-dev | 11:08 | |
*** reed_ has quit IRC | 11:09 | |
*** Madasi has quit IRC | 11:10 | |
*** mrodden has quit IRC | 11:10 | |
*** cbartz has joined #openstack-dev | 11:10 | |
*** jckasper has joined #openstack-dev | 11:10 | |
*** aysyd has quit IRC | 11:10 | |
*** miguelgrinberg has quit IRC | 11:11 | |
*** pkoniszewski_ has joined #openstack-dev | 11:11 | |
*** aysyd has joined #openstack-dev | 11:11 | |
*** ygbo has quit IRC | 11:12 | |
*** pkoniszewski has quit IRC | 11:12 | |
*** rigved has quit IRC | 11:12 | |
*** cswang_ has quit IRC | 11:12 | |
*** skraynev has quit IRC | 11:12 | |
*** dmsimard has quit IRC | 11:12 | |
*** pkarikh has quit IRC | 11:12 | |
*** jokke_ has quit IRC | 11:12 | |
*** jjmojojjmojo has quit IRC | 11:12 | |
*** toabctl_ has quit IRC | 11:12 | |
*** mvk has quit IRC | 11:12 | |
*** ccesario has quit IRC | 11:12 | |
*** neeti has quit IRC | 11:12 | |
*** zhurong has joined #openstack-dev | 11:13 | |
*** astupnikov has quit IRC | 11:13 | |
*** rigved has joined #openstack-dev | 11:13 | |
*** jokke_ has joined #openstack-dev | 11:13 | |
*** neeti has joined #openstack-dev | 11:14 | |
*** jckasper has quit IRC | 11:15 | |
*** astupnikov has joined #openstack-dev | 11:16 | |
*** aswadr has quit IRC | 11:16 | |
*** zhurong has quit IRC | 11:17 | |
*** toabctl has joined #openstack-dev | 11:17 | |
*** jjmojojjmojo has joined #openstack-dev | 11:17 | |
*** miguelgrinberg has joined #openstack-dev | 11:17 | |
*** Madasi has joined #openstack-dev | 11:17 | |
*** mrodden has joined #openstack-dev | 11:17 | |
*** yamamoto_ has quit IRC | 11:18 | |
*** zhurong has joined #openstack-dev | 11:19 | |
*** neilus has joined #openstack-dev | 11:19 | |
*** priteau has joined #openstack-dev | 11:19 | |
*** pkarikh has joined #openstack-dev | 11:20 | |
*** priteau has quit IRC | 11:20 | |
*** cswang_ has joined #openstack-dev | 11:20 | |
*** astupnikov has quit IRC | 11:21 | |
*** zhurong has quit IRC | 11:22 | |
*** achampion has joined #openstack-dev | 11:23 | |
*** neilus has quit IRC | 11:24 | |
*** mvk has joined #openstack-dev | 11:24 | |
*** ygbo has joined #openstack-dev | 11:24 | |
*** astupnikov has joined #openstack-dev | 11:24 | |
*** skraynev has joined #openstack-dev | 11:24 | |
*** ccesario has joined #openstack-dev | 11:25 | |
*** bkumar has joined #openstack-dev | 11:25 | |
*** jwcroppe has joined #openstack-dev | 11:26 | |
*** dmsimard has joined #openstack-dev | 11:26 | |
*** rtheis has joined #openstack-dev | 11:27 | |
*** achampion has quit IRC | 11:27 | |
*** gfidente has joined #openstack-dev | 11:28 | |
*** gfidente has quit IRC | 11:28 | |
*** gfidente has joined #openstack-dev | 11:28 | |
*** astupnikov has quit IRC | 11:29 | |
*** bnemec has quit IRC | 11:31 | |
*** gfidente has quit IRC | 11:31 | |
*** astupnikov has joined #openstack-dev | 11:32 | |
*** jwcroppe has quit IRC | 11:32 | |
*** jwcroppe has joined #openstack-dev | 11:33 | |
*** spzala has joined #openstack-dev | 11:33 | |
*** mss-4 has joined #openstack-dev | 11:34 | |
*** ppetit has quit IRC | 11:35 | |
*** jwcroppe has quit IRC | 11:37 | |
*** astupnikov has quit IRC | 11:37 | |
*** eglynn has quit IRC | 11:38 | |
*** blitz00 has quit IRC | 11:38 | |
*** spzala has quit IRC | 11:38 | |
*** mss-4 has quit IRC | 11:38 | |
*** itxaka has joined #openstack-dev | 11:40 | |
*** blitz00 has joined #openstack-dev | 11:40 | |
*** astupnikov has joined #openstack-dev | 11:40 | |
*** astupnikov has quit IRC | 11:45 | |
*** dims has joined #openstack-dev | 11:46 | |
*** baojg has quit IRC | 11:48 | |
*** astupnikov has joined #openstack-dev | 11:48 | |
*** doug-fish has joined #openstack-dev | 11:49 | |
*** baojg has joined #openstack-dev | 11:51 | |
*** lpetrut has joined #openstack-dev | 11:53 | |
*** astupnikov has quit IRC | 11:53 | |
*** yeylon has joined #openstack-dev | 11:54 | |
*** itzikb has joined #openstack-dev | 11:54 | |
*** bkumar has quit IRC | 11:55 | |
*** e0ne has joined #openstack-dev | 11:55 | |
*** astupnikov has joined #openstack-dev | 11:56 | |
*** raildo-afk is now known as raildo | 11:58 | |
*** nkinder has quit IRC | 11:59 | |
*** haomaiwang has quit IRC | 12:01 | |
*** salv-orl_ has quit IRC | 12:01 | |
*** haomaiwang has joined #openstack-dev | 12:01 | |
*** astupnikov has quit IRC | 12:01 | |
*** doug-fish has quit IRC | 12:02 | |
*** rraja has joined #openstack-dev | 12:02 | |
*** astupnikov has joined #openstack-dev | 12:04 | |
*** rraja has quit IRC | 12:06 | |
*** rraja has joined #openstack-dev | 12:06 | |
*** astupnikov has quit IRC | 12:09 | |
*** baojg has quit IRC | 12:09 | |
*** xenogear has quit IRC | 12:12 | |
*** astupnikov has joined #openstack-dev | 12:12 | |
*** janonymous has quit IRC | 12:12 | |
*** mpavone has quit IRC | 12:13 | |
*** mpavone has joined #openstack-dev | 12:13 | |
*** astupnikov has quit IRC | 12:14 | |
*** pkholkin_ has joined #openstack-dev | 12:17 | |
*** pkholkin has quit IRC | 12:18 | |
*** yamamoto has joined #openstack-dev | 12:19 | |
*** paramite has joined #openstack-dev | 12:21 | |
*** markvoelker has joined #openstack-dev | 12:22 | |
*** achampion has joined #openstack-dev | 12:24 | |
*** neeti has quit IRC | 12:24 | |
*** yamamoto has quit IRC | 12:25 | |
*** blues-man has quit IRC | 12:25 | |
*** baojg has joined #openstack-dev | 12:26 | |
*** markvoelker has quit IRC | 12:27 | |
*** fultonj has quit IRC | 12:28 | |
*** fultonj has joined #openstack-dev | 12:29 | |
*** salv-orlando has joined #openstack-dev | 12:29 | |
*** achampion has quit IRC | 12:29 | |
*** fgimenez has quit IRC | 12:29 | |
*** egallen has joined #openstack-dev | 12:30 | |
*** fgimenez has joined #openstack-dev | 12:31 | |
*** fgimenez has joined #openstack-dev | 12:31 | |
*** vgridnev has quit IRC | 12:32 | |
*** seroyer has joined #openstack-dev | 12:33 | |
*** gordc has joined #openstack-dev | 12:33 | |
*** spzala has joined #openstack-dev | 12:34 | |
*** stevemar has joined #openstack-dev | 12:35 | |
*** itzikb has quit IRC | 12:35 | |
*** vgridnev has joined #openstack-dev | 12:36 | |
*** paramite has quit IRC | 12:37 | |
*** mpavone has quit IRC | 12:37 | |
*** nplanel has quit IRC | 12:38 | |
*** daemontool has quit IRC | 12:38 | |
*** stevemar has quit IRC | 12:38 | |
*** baojg has quit IRC | 12:39 | |
*** spzala has quit IRC | 12:39 | |
*** mpavone has joined #openstack-dev | 12:40 | |
*** hseipp has joined #openstack-dev | 12:41 | |
*** zenoway has quit IRC | 12:41 | |
*** hseipp has quit IRC | 12:41 | |
*** hseipp has joined #openstack-dev | 12:41 | |
*** rtheis has quit IRC | 12:41 | |
*** zenoway has joined #openstack-dev | 12:41 | |
*** neeti has joined #openstack-dev | 12:42 | |
*** baojg has joined #openstack-dev | 12:44 | |
*** zenoway has quit IRC | 12:46 | |
*** baojg has quit IRC | 12:47 | |
*** notnownikki has joined #openstack-dev | 12:47 | |
*** ygbo has quit IRC | 12:49 | |
*** AnilV4 has quit IRC | 12:50 | |
*** zenoway has joined #openstack-dev | 12:50 | |
*** Guest24021 has quit IRC | 12:51 | |
*** samueldm1 has joined #openstack-dev | 12:53 | |
*** samueldm1 has quit IRC | 12:53 | |
*** samueldmq has joined #openstack-dev | 12:53 | |
*** smoriya_ has quit IRC | 12:54 | |
*** bobh has joined #openstack-dev | 12:54 | |
*** zenoway has quit IRC | 12:56 | |
*** erlon has joined #openstack-dev | 12:56 | |
*** bobh has quit IRC | 12:56 | |
*** zenoway has joined #openstack-dev | 13:00 | |
*** jaypipes has quit IRC | 13:00 | |
*** haomaiwang has quit IRC | 13:01 | |
*** krotscheck has joined #openstack-dev | 13:01 | |
*** kobis has joined #openstack-dev | 13:01 | |
*** haomaiwang has joined #openstack-dev | 13:01 | |
*** baojg has joined #openstack-dev | 13:02 | |
*** jaypipes has joined #openstack-dev | 13:04 | |
*** cbartz has left #openstack-dev | 13:06 | |
*** neilus has joined #openstack-dev | 13:08 | |
*** rain has joined #openstack-dev | 13:09 | |
*** leanderthal has joined #openstack-dev | 13:09 | |
*** leanderthal has quit IRC | 13:09 | |
*** rain is now known as Guest89418 | 13:09 | |
*** Guest89418 is now known as leanderthal | 13:10 | |
*** dizquierdo has joined #openstack-dev | 13:10 | |
*** daemontool has joined #openstack-dev | 13:11 | |
*** Slashme has joined #openstack-dev | 13:12 | |
*** neilus has quit IRC | 13:12 | |
*** salv-orlando has quit IRC | 13:13 | |
*** jb11211 has joined #openstack-dev | 13:13 | |
*** psd has joined #openstack-dev | 13:13 | |
*** leanderthal has quit IRC | 13:14 | |
*** NobodyCa1 has joined #openstack-dev | 13:15 | |
*** dizquierdo has quit IRC | 13:16 | |
*** yassine_ has joined #openstack-dev | 13:18 | |
*** deva_ has joined #openstack-dev | 13:19 | |
*** paramite has joined #openstack-dev | 13:19 | |
*** zackf has joined #openstack-dev | 13:20 | |
*** yeylon has quit IRC | 13:20 | |
*** yassine has quit IRC | 13:20 | |
*** hvprash has joined #openstack-dev | 13:21 | |
*** NobodyCa1 has quit IRC | 13:21 | |
*** NobodyCa1 has joined #openstack-dev | 13:21 | |
*** jb11211 has quit IRC | 13:22 | |
*** markvoelker has joined #openstack-dev | 13:22 | |
*** deva_ has quit IRC | 13:23 | |
*** boris-42 has quit IRC | 13:23 | |
*** deva_ has joined #openstack-dev | 13:24 | |
*** Slashme has quit IRC | 13:24 | |
*** zackf has quit IRC | 13:24 | |
*** markvoelker_ has joined #openstack-dev | 13:24 | |
*** markvoelker has quit IRC | 13:24 | |
*** achampion has joined #openstack-dev | 13:25 | |
*** hvprash has quit IRC | 13:26 | |
*** kgiusti has joined #openstack-dev | 13:27 | |
*** NobodyCa1 has quit IRC | 13:27 | |
*** rtheis has joined #openstack-dev | 13:28 | |
*** samueldmq has quit IRC | 13:28 | |
*** deva_ has quit IRC | 13:28 | |
*** samueldmq has joined #openstack-dev | 13:28 | |
*** saravanankr has quit IRC | 13:29 | |
*** achampion has quit IRC | 13:30 | |
*** xyang1 has joined #openstack-dev | 13:30 | |
*** blues-man has joined #openstack-dev | 13:31 | |
*** ppetit has joined #openstack-dev | 13:31 | |
*** neeti has quit IRC | 13:31 | |
*** neeti has joined #openstack-dev | 13:32 | |
*** baoli has joined #openstack-dev | 13:34 | |
*** mezcan has quit IRC | 13:35 | |
*** spzala has joined #openstack-dev | 13:35 | |
*** rraja has quit IRC | 13:37 | |
*** baoli_ has joined #openstack-dev | 13:37 | |
*** baoli has quit IRC | 13:39 | |
*** cdent has joined #openstack-dev | 13:40 | |
*** spzala has quit IRC | 13:40 | |
cdent | sdague: +many on your non-bullshit words mission statement | 13:40 |
*** nplanel has joined #openstack-dev | 13:44 | |
*** zaneb has quit IRC | 13:44 | |
*** morazi has joined #openstack-dev | 13:44 | |
*** zenoway has quit IRC | 13:47 | |
*** edleafe is now known as figleaf | 13:47 | |
*** zenoway has joined #openstack-dev | 13:48 | |
sdague | cdent: heh | 13:48 |
sdague | the relevant technologies just pushed me over the edge | 13:49 |
*** doug-fish has joined #openstack-dev | 13:49 | |
*** annegentle has joined #openstack-dev | 13:49 | |
cdent | You could probably push yours a bit further by sending it through the xkcd simple words thing | 13:49 |
*** zenoway has quit IRC | 13:49 | |
*** zenoway has joined #openstack-dev | 13:49 | |
*** shoutm has joined #openstack-dev | 13:50 | |
*** ihrachys has joined #openstack-dev | 13:50 | |
sdague | heh | 13:50 |
*** nkinder has joined #openstack-dev | 13:50 | |
annegentle | cdent: oh ha! I had to find that one | 13:50 |
*** paramite has quit IRC | 13:51 | |
*** keedya has joined #openstack-dev | 13:51 | |
sdague | cdent: To make an everywhere Open Parts Cloud making thing. It should | 13:53 |
sdague | be easy to use, simple to make, work well at all size, be | 13:53 |
sdague | same between, and meet the needs of all clouds. | 13:53 |
sdague | that gets past the filter | 13:53 |
cdent | that's pretty good! | 13:53 |
sdague | sadly they don't suggest options, just flag words | 13:53 |
*** moravec has joined #openstack-dev | 13:53 | |
*** ihrachys has quit IRC | 13:54 | |
*** jckasper has joined #openstack-dev | 13:54 | |
*** geguileo has joined #openstack-dev | 13:56 | |
*** tiswanso has joined #openstack-dev | 13:57 | |
*** spzala has joined #openstack-dev | 13:58 | |
*** tiswanso has quit IRC | 13:58 | |
*** eharney has joined #openstack-dev | 13:59 | |
*** dkranz has joined #openstack-dev | 13:59 | |
*** tiswanso has joined #openstack-dev | 13:59 | |
*** zaneb has joined #openstack-dev | 13:59 | |
*** haomaiwang has quit IRC | 14:01 | |
*** ygbo has joined #openstack-dev | 14:01 | |
*** haomaiwang has joined #openstack-dev | 14:01 | |
*** neeti has quit IRC | 14:06 | |
*** jmckind has joined #openstack-dev | 14:06 | |
*** abregman|afk is now known as abregman | 14:08 | |
*** The_Knight has joined #openstack-dev | 14:08 | |
smcginnis | sam_wan: I have an osprofiler bug out on that. | 14:09 |
*** spzala has quit IRC | 14:11 | |
*** zaneb has quit IRC | 14:11 | |
*** spzala has joined #openstack-dev | 14:11 | |
*** salv-orlando has joined #openstack-dev | 14:13 | |
*** MaxPC has joined #openstack-dev | 14:14 | |
*** zaneb has joined #openstack-dev | 14:14 | |
*** jimbaker has quit IRC | 14:14 | |
*** jcoufal has joined #openstack-dev | 14:14 | |
*** vimal has quit IRC | 14:14 | |
*** jimbaker has joined #openstack-dev | 14:15 | |
*** jimbaker has quit IRC | 14:15 | |
*** jimbaker has joined #openstack-dev | 14:15 | |
*** infra-re_ is now known as infrared | 14:15 | |
*** spzala has quit IRC | 14:15 | |
*** infrared is now known as Guest72378 | 14:16 | |
*** mkoderer__ has quit IRC | 14:16 | |
*** Guest72378 is now known as infra-red | 14:16 | |
*** mkoderer__ has joined #openstack-dev | 14:17 | |
*** agireud has quit IRC | 14:17 | |
*** agireud has joined #openstack-dev | 14:19 | |
*** piet has joined #openstack-dev | 14:19 | |
*** hvprash has joined #openstack-dev | 14:21 | |
*** hvprash has quit IRC | 14:21 | |
*** amitgandhinz has joined #openstack-dev | 14:22 | |
*** baojg has quit IRC | 14:22 | |
*** jimbaker has quit IRC | 14:23 | |
*** jimbaker has joined #openstack-dev | 14:23 | |
*** jimbaker has quit IRC | 14:23 | |
*** jimbaker has joined #openstack-dev | 14:23 | |
*** yamamoto has joined #openstack-dev | 14:24 | |
*** haomaiwang has quit IRC | 14:24 | |
*** raildo is now known as raildo-afk | 14:25 | |
*** kbringard has joined #openstack-dev | 14:25 | |
*** achampion has joined #openstack-dev | 14:25 | |
*** onthecly has joined #openstack-dev | 14:28 | |
*** pkoniszewski_ is now known as pkoniszewski | 14:29 | |
*** baojg has joined #openstack-dev | 14:29 | |
*** doug-fish has quit IRC | 14:29 | |
*** fgimenez has quit IRC | 14:29 | |
*** doug-fish has joined #openstack-dev | 14:30 | |
*** salv-orlando has quit IRC | 14:30 | |
*** achampion has quit IRC | 14:30 | |
*** omnipresent has joined #openstack-dev | 14:31 | |
*** fgimenez has joined #openstack-dev | 14:31 | |
*** fgimenez has quit IRC | 14:31 | |
*** fgimenez has joined #openstack-dev | 14:31 | |
*** seroyer has quit IRC | 14:33 | |
*** aysyd has quit IRC | 14:33 | |
*** aysyd has joined #openstack-dev | 14:33 | |
*** galstrom_zzz is now known as galstrom | 14:34 | |
*** zenoway has quit IRC | 14:34 | |
*** alaski is now known as lascii | 14:35 | |
*** eglynn has joined #openstack-dev | 14:35 | |
*** eglynn has quit IRC | 14:35 | |
*** eglynn has joined #openstack-dev | 14:35 | |
*** annegentle has quit IRC | 14:36 | |
*** aloga has quit IRC | 14:36 | |
*** amotoki has quit IRC | 14:37 | |
*** achampion has joined #openstack-dev | 14:38 | |
*** xyang1 has quit IRC | 14:41 | |
*** cfh has joined #openstack-dev | 14:42 | |
*** baojg has quit IRC | 14:43 | |
*** jtomasek__ has quit IRC | 14:43 | |
*** bkumar has joined #openstack-dev | 14:45 | |
*** mrkz has joined #openstack-dev | 14:46 | |
*** baojg has joined #openstack-dev | 14:46 | |
*** abregman is now known as abregman|afk | 14:46 | |
*** seroyer has joined #openstack-dev | 14:50 | |
*** ninag has joined #openstack-dev | 14:50 | |
*** spzala has joined #openstack-dev | 14:53 | |
*** NobodyCa1 has joined #openstack-dev | 14:53 | |
*** Slashme has joined #openstack-dev | 14:53 | |
*** jb11211 has joined #openstack-dev | 14:54 | |
*** bkumar4 has joined #openstack-dev | 14:54 | |
*** jbell8 has joined #openstack-dev | 14:55 | |
*** jordanP has quit IRC | 14:56 | |
*** neilus has joined #openstack-dev | 14:56 | |
*** bkumar has quit IRC | 14:56 | |
*** mriedem has joined #openstack-dev | 14:57 | |
*** haomaiwang has joined #openstack-dev | 14:59 | |
*** SridharG has quit IRC | 14:59 | |
*** dizquierdo has joined #openstack-dev | 14:59 | |
*** jb11211 has quit IRC | 15:00 | |
*** haomaiwang has quit IRC | 15:01 | |
*** neilus has quit IRC | 15:01 | |
*** yamamoto has quit IRC | 15:01 | |
*** hdd has joined #openstack-dev | 15:01 | |
*** NobodyCa1 has quit IRC | 15:02 | |
*** Slashme has quit IRC | 15:02 | |
*** slberger has joined #openstack-dev | 15:02 | |
*** doug-fis_ has joined #openstack-dev | 15:03 | |
*** baoli_ has quit IRC | 15:03 | |
*** doug-fish has quit IRC | 15:04 | |
*** baoli has joined #openstack-dev | 15:04 | |
*** hynekm has joined #openstack-dev | 15:04 | |
*** doug-fish has joined #openstack-dev | 15:05 | |
*** hynekm_ has joined #openstack-dev | 15:05 | |
*** doug-fish has quit IRC | 15:05 | |
*** hynekm has quit IRC | 15:05 | |
*** doug-fish has joined #openstack-dev | 15:05 | |
*** athomas has quit IRC | 15:07 | |
*** doug-fi__ has joined #openstack-dev | 15:07 | |
*** jimbaker has quit IRC | 15:07 | |
*** doug-fis_ has quit IRC | 15:07 | |
*** annegentle has joined #openstack-dev | 15:08 | |
*** jimbaker has joined #openstack-dev | 15:08 | |
*** jimbaker has quit IRC | 15:08 | |
*** jimbaker has joined #openstack-dev | 15:08 | |
*** wootehfoot has joined #openstack-dev | 15:09 | |
*** doug-fish has quit IRC | 15:10 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 15:10 | |
*** vijendar has joined #openstack-dev | 15:10 | |
*** doug-fi__ has quit IRC | 15:11 | |
*** xemdetia has joined #openstack-dev | 15:11 | |
*** zz_dimtruck is now known as dimtruck | 15:12 | |
*** amotoki has joined #openstack-dev | 15:14 | |
*** kacieee has joined #openstack-dev | 15:15 | |
*** nikhil_k is now known as nikhil | 15:17 | |
*** xarses has quit IRC | 15:17 | |
*** annegentle has quit IRC | 15:18 | |
*** annegentle has joined #openstack-dev | 15:18 | |
*** nkinder has quit IRC | 15:18 | |
*** baojg has quit IRC | 15:19 | |
*** morazi has quit IRC | 15:20 | |
*** zackf has joined #openstack-dev | 15:21 | |
*** doug-fish has joined #openstack-dev | 15:22 | |
*** xyang1 has joined #openstack-dev | 15:24 | |
*** jckasper has quit IRC | 15:25 | |
*** hdd has quit IRC | 15:25 | |
*** bkumar4 has quit IRC | 15:25 | |
*** keedya has quit IRC | 15:25 | |
*** jckasper has joined #openstack-dev | 15:25 | |
*** baojg has joined #openstack-dev | 15:25 | |
*** bkumar4 has joined #openstack-dev | 15:25 | |
*** zackf has quit IRC | 15:26 | |
*** jimbaker has quit IRC | 15:27 | |
*** nkinder has joined #openstack-dev | 15:28 | |
*** psd has quit IRC | 15:29 | |
*** pushkaru has joined #openstack-dev | 15:29 | |
*** yamamoto has joined #openstack-dev | 15:29 | |
*** jreeves has joined #openstack-dev | 15:30 | |
*** jimbaker has joined #openstack-dev | 15:30 | |
*** jimbaker has quit IRC | 15:30 | |
*** jimbaker has joined #openstack-dev | 15:30 | |
*** yamamoto has quit IRC | 15:31 | |
*** jwcroppe has joined #openstack-dev | 15:31 | |
*** yamamoto has joined #openstack-dev | 15:32 | |
*** eharney has quit IRC | 15:33 | |
*** haomaiwang has joined #openstack-dev | 15:33 | |
*** jbell8 has quit IRC | 15:34 | |
*** ukalifon has joined #openstack-dev | 15:35 | |
*** numan_ has quit IRC | 15:36 | |
*** yamamoto has quit IRC | 15:37 | |
*** infra-red has quit IRC | 15:37 | |
*** bobh has joined #openstack-dev | 15:38 | |
*** bobh has quit IRC | 15:38 | |
*** bobh has joined #openstack-dev | 15:38 | |
*** ukalifon has quit IRC | 15:39 | |
*** ukalifon1 has joined #openstack-dev | 15:39 | |
*** bnemec has joined #openstack-dev | 15:39 | |
*** amotoki has quit IRC | 15:40 | |
*** MaxPC has quit IRC | 15:40 | |
*** doug-fish has quit IRC | 15:42 | |
*** vijendar has quit IRC | 15:42 | |
*** piet has quit IRC | 15:42 | |
*** yamamoto has joined #openstack-dev | 15:42 | |
*** piet has joined #openstack-dev | 15:43 | |
*** yamamoto has quit IRC | 15:44 | |
*** david-lyle has joined #openstack-dev | 15:47 | |
*** galstrom is now known as galstrom_zzz | 15:48 | |
*** MaxPC has joined #openstack-dev | 15:48 | |
*** bkumar4 has quit IRC | 15:50 | |
*** galstrom_zzz is now known as galstrom | 15:50 | |
*** eglynn has quit IRC | 15:52 | |
*** doug-fish has joined #openstack-dev | 15:53 | |
*** mdorman has joined #openstack-dev | 15:53 | |
*** xarses has joined #openstack-dev | 15:54 | |
*** amotoki has joined #openstack-dev | 15:54 | |
*** gnuoy_ has joined #openstack-dev | 15:54 | |
*** mgarza has joined #openstack-dev | 15:55 | |
*** ukalifon1 has quit IRC | 15:57 | |
*** gnuoy_ has quit IRC | 15:59 | |
*** bnemec has quit IRC | 15:59 | |
*** jdurgin1 has joined #openstack-dev | 15:59 | |
*** annegent_ has joined #openstack-dev | 15:59 | |
*** bdemers_ has joined #openstack-dev | 16:00 | |
*** bnemec has joined #openstack-dev | 16:00 | |
*** tongli has quit IRC | 16:00 | |
*** logan_ has joined #openstack-dev | 16:00 | |
*** jbell8 has joined #openstack-dev | 16:01 | |
*** logan_ is now known as Guest78654 | 16:01 | |
*** haomaiw__ has joined #openstack-dev | 16:01 | |
*** logan- has quit IRC | 16:01 | |
*** haomaiwang has quit IRC | 16:02 | |
*** baojg has quit IRC | 16:02 | |
*** tongli has joined #openstack-dev | 16:02 | |
*** Guest78654 is now known as logan- | 16:02 | |
*** jcoufal has quit IRC | 16:02 | |
*** aarefiev_ has joined #openstack-dev | 16:03 | |
*** NobodyCa1 has joined #openstack-dev | 16:03 | |
*** Chaser_ has joined #openstack-dev | 16:03 | |
*** annegent_ has quit IRC | 16:03 | |
*** annegentle has quit IRC | 16:04 | |
*** samueldm1 has joined #openstack-dev | 16:04 | |
*** annegentle has joined #openstack-dev | 16:04 | |
*** cburgess_ has joined #openstack-dev | 16:05 | |
*** mrkz1 has joined #openstack-dev | 16:05 | |
*** cdub has joined #openstack-dev | 16:06 | |
*** gnuoy_ has joined #openstack-dev | 16:06 | |
*** xenogear has joined #openstack-dev | 16:07 | |
*** shoutm has quit IRC | 16:07 | |
*** fultonj_ has joined #openstack-dev | 16:07 | |
*** gnuoy_ has quit IRC | 16:07 | |
*** pratap_ has joined #openstack-dev | 16:08 | |
*** takashi_ has joined #openstack-dev | 16:09 | |
*** FunnyLookinHat has joined #openstack-dev | 16:10 | |
*** belmoreira has quit IRC | 16:13 | |
*** bnemec has quit IRC | 16:13 | |
*** mpavone has quit IRC | 16:14 | |
*** mrkz has quit IRC | 16:14 | |
*** samueldmq has quit IRC | 16:14 | |
*** fultonj has quit IRC | 16:14 | |
*** gaughen has quit IRC | 16:14 | |
*** bdemers has quit IRC | 16:14 | |
*** Chaser has quit IRC | 16:14 | |
*** takashi has quit IRC | 16:14 | |
*** pratap has quit IRC | 16:14 | |
*** cburgess has quit IRC | 16:14 | |
*** aarefiev has quit IRC | 16:14 | |
*** Kimmo_ has quit IRC | 16:14 | |
*** NobodyCam has quit IRC | 16:14 | |
*** vishwanathj has joined #openstack-dev | 16:14 | |
*** nkinder has quit IRC | 16:14 | |
*** mrkz1 has quit IRC | 16:15 | |
*** sam_wan has quit IRC | 16:15 | |
*** mrkz has joined #openstack-dev | 16:15 | |
*** baojg has joined #openstack-dev | 16:17 | |
*** gaughen has joined #openstack-dev | 16:17 | |
*** galstrom is now known as galstrom_zzz | 16:19 | |
*** vgridnev has quit IRC | 16:19 | |
*** Qwazerty has quit IRC | 16:20 | |
*** annegentle has quit IRC | 16:21 | |
*** armax has joined #openstack-dev | 16:21 | |
*** omnipresent has quit IRC | 16:22 | |
*** david-lyle has quit IRC | 16:23 | |
*** dimtruck is now known as zz_dimtruck | 16:23 | |
*** annegentle has joined #openstack-dev | 16:24 | |
*** garthb has joined #openstack-dev | 16:24 | |
*** MaxPC has quit IRC | 16:25 | |
*** yassine_ has quit IRC | 16:25 | |
*** jbell8 has quit IRC | 16:25 | |
*** Qwazerty has joined #openstack-dev | 16:26 | |
*** zenoway has joined #openstack-dev | 16:27 | |
*** mss-4 has joined #openstack-dev | 16:27 | |
*** raildo-afk is now known as raildo | 16:27 | |
*** eglynn has joined #openstack-dev | 16:28 | |
*** vijendar has joined #openstack-dev | 16:28 | |
*** zakora has quit IRC | 16:28 | |
*** vijendar has left #openstack-dev | 16:28 | |
*** david-lyle has joined #openstack-dev | 16:29 | |
*** baojg has quit IRC | 16:29 | |
*** spzala has quit IRC | 16:30 | |
*** yatin has joined #openstack-dev | 16:30 | |
*** spzala has joined #openstack-dev | 16:31 | |
*** yatin has quit IRC | 16:31 | |
*** zenoway has quit IRC | 16:31 | |
*** spzala_ has joined #openstack-dev | 16:32 | |
*** baojg has joined #openstack-dev | 16:33 | |
*** zz_dimtruck is now known as dimtruck | 16:33 | |
*** _cjones_ has joined #openstack-dev | 16:34 | |
*** harlowja_at_home has joined #openstack-dev | 16:34 | |
*** tongli has quit IRC | 16:35 | |
*** jbell8 has joined #openstack-dev | 16:35 | |
*** dimtruck is now known as zz_dimtruck | 16:35 | |
*** spzala has quit IRC | 16:35 | |
*** hynekm_ has quit IRC | 16:36 | |
*** piet has quit IRC | 16:36 | |
*** spzala_ has quit IRC | 16:36 | |
*** _cjones_ has quit IRC | 16:37 | |
*** _cjones_ has joined #openstack-dev | 16:37 | |
*** piet has joined #openstack-dev | 16:37 | |
*** e0ne has quit IRC | 16:37 | |
*** baojg has quit IRC | 16:41 | |
*** jreeves has quit IRC | 16:42 | |
*** shardy has joined #openstack-dev | 16:43 | |
*** athomas has joined #openstack-dev | 16:43 | |
*** gaughen_ has joined #openstack-dev | 16:43 | |
*** baojg has joined #openstack-dev | 16:44 | |
*** yamamoto has joined #openstack-dev | 16:45 | |
*** neilus has joined #openstack-dev | 16:45 | |
*** nadeem has joined #openstack-dev | 16:45 | |
*** nadeem has quit IRC | 16:46 | |
*** gaughen has quit IRC | 16:47 | |
*** nadeem has joined #openstack-dev | 16:47 | |
*** neilus has quit IRC | 16:49 | |
*** eglynn has quit IRC | 16:50 | |
*** egallen has quit IRC | 16:50 | |
*** yamamoto has quit IRC | 16:51 | |
*** bpokorny has joined #openstack-dev | 16:51 | |
*** vijendar has joined #openstack-dev | 16:51 | |
*** hdd has joined #openstack-dev | 16:52 | |
*** NobodyCa1 is now known as NobodyCam | 16:52 | |
*** e0ne has joined #openstack-dev | 16:52 | |
*** annegentle has quit IRC | 16:53 | |
*** egallen has joined #openstack-dev | 16:53 | |
*** mikelk has quit IRC | 16:53 | |
*** jcsp has quit IRC | 16:53 | |
*** baojg has quit IRC | 16:53 | |
*** annegentle has joined #openstack-dev | 16:53 | |
*** jgrassler has quit IRC | 16:53 | |
*** jprovazn has joined #openstack-dev | 16:54 | |
*** gyee has joined #openstack-dev | 16:55 | |
*** comay has joined #openstack-dev | 16:55 | |
*** spandhe has joined #openstack-dev | 16:56 | |
*** fnaval has quit IRC | 16:57 | |
*** fnaval has joined #openstack-dev | 16:57 | |
*** blitz00 has quit IRC | 16:58 | |
*** sputnik13 has joined #openstack-dev | 17:00 | |
*** haomaiw__ has quit IRC | 17:01 | |
*** haomaiwang has joined #openstack-dev | 17:01 | |
*** gberginc has quit IRC | 17:01 | |
*** sputnik13 has quit IRC | 17:02 | |
*** MaxPC has joined #openstack-dev | 17:02 | |
*** vishwanathj has quit IRC | 17:02 | |
*** vishwanathj has joined #openstack-dev | 17:03 | |
*** stevemar has joined #openstack-dev | 17:03 | |
*** nkinder has joined #openstack-dev | 17:05 | |
*** ppetit has quit IRC | 17:06 | |
*** SridharG has joined #openstack-dev | 17:09 | |
*** matrohon has quit IRC | 17:09 | |
*** avarner_ has joined #openstack-dev | 17:10 | |
*** cfh has quit IRC | 17:10 | |
*** onthecly has quit IRC | 17:10 | |
*** hdd has quit IRC | 17:10 | |
*** Akanksha08 has joined #openstack-dev | 17:11 | |
*** jgrassler has joined #openstack-dev | 17:11 | |
*** vinc has quit IRC | 17:11 | |
*** vinc has joined #openstack-dev | 17:12 | |
*** avarner has quit IRC | 17:14 | |
*** tongli has joined #openstack-dev | 17:14 | |
*** david-lyle has quit IRC | 17:14 | |
*** achanda has joined #openstack-dev | 17:15 | |
*** harlowja_at_home has quit IRC | 17:17 | |
*** stevemar has quit IRC | 17:17 | |
*** stevemar has joined #openstack-dev | 17:18 | |
*** galstrom_zzz is now known as galstrom | 17:18 | |
*** vishwanathj has quit IRC | 17:18 | |
*** ianychoi has joined #openstack-dev | 17:18 | |
*** onthecly has joined #openstack-dev | 17:18 | |
*** fgimenez has quit IRC | 17:19 | |
*** wootehfoot has quit IRC | 17:20 | |
*** david-lyle has joined #openstack-dev | 17:21 | |
*** leeantho has joined #openstack-dev | 17:22 | |
*** stevemar has quit IRC | 17:22 | |
*** zaitcev has joined #openstack-dev | 17:23 | |
*** matrohon has joined #openstack-dev | 17:24 | |
*** david-lyle has quit IRC | 17:25 | |
*** hdd has joined #openstack-dev | 17:25 | |
*** morazi has joined #openstack-dev | 17:26 | |
*** zackf has joined #openstack-dev | 17:26 | |
*** nkinder has quit IRC | 17:27 | |
*** cfh has joined #openstack-dev | 17:28 | |
*** mrkz has quit IRC | 17:28 | |
*** nplanel has quit IRC | 17:29 | |
*** mriedem is now known as mriedem_afk | 17:31 | |
*** vgridnev has joined #openstack-dev | 17:31 | |
*** annegentle has quit IRC | 17:31 | |
*** imandhan has joined #openstack-dev | 17:32 | |
*** annegentle has joined #openstack-dev | 17:32 | |
*** zackf has quit IRC | 17:32 | |
*** mrkz has joined #openstack-dev | 17:33 | |
*** haleyb has quit IRC | 17:34 | |
*** ygbo has quit IRC | 17:35 | |
*** priteau has joined #openstack-dev | 17:35 | |
*** annegentle has quit IRC | 17:38 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 17:39 | |
*** onthecly has quit IRC | 17:40 | |
*** fnaval has quit IRC | 17:42 | |
*** aloga has joined #openstack-dev | 17:44 | |
*** amotoki has quit IRC | 17:45 | |
*** eharney has joined #openstack-dev | 17:45 | |
*** ssurana has joined #openstack-dev | 17:45 | |
*** haleyb has joined #openstack-dev | 17:48 | |
*** zz_dimtruck is now known as dimtruck | 17:49 | |
*** dthomsen has joined #openstack-dev | 17:50 | |
*** e0ne has quit IRC | 17:51 | |
*** salv-orlando has joined #openstack-dev | 17:55 | |
*** galstrom is now known as galstrom_zzz | 17:56 | |
*** penick has joined #openstack-dev | 17:56 | |
*** blues-man has quit IRC | 17:59 | |
*** haomaiwang has quit IRC | 18:01 | |
*** 77CAAFNN9 has joined #openstack-dev | 18:01 | |
*** Kimmo_ has joined #openstack-dev | 18:03 | |
*** numan_ has joined #openstack-dev | 18:03 | |
*** spandhe has quit IRC | 18:04 | |
*** achanda has quit IRC | 18:06 | |
*** fnaval has joined #openstack-dev | 18:06 | |
*** vgridnev has quit IRC | 18:07 | |
*** onthecly has joined #openstack-dev | 18:07 | |
*** mvk has quit IRC | 18:09 | |
*** spzala has joined #openstack-dev | 18:11 | |
*** nikhil_k has joined #openstack-dev | 18:11 | |
*** onthecly has quit IRC | 18:11 | |
*** athomas has quit IRC | 18:11 | |
*** jgrassler has quit IRC | 18:11 | |
*** lpetrut has quit IRC | 18:11 | |
*** morazi has quit IRC | 18:12 | |
*** jgrassler has joined #openstack-dev | 18:12 | |
*** zackf has joined #openstack-dev | 18:13 | |
*** annegentle has joined #openstack-dev | 18:13 | |
*** nikhil has quit IRC | 18:14 | |
*** priteau has quit IRC | 18:14 | |
*** dansmith is now known as superdan | 18:16 | |
*** zackf has quit IRC | 18:17 | |
*** annegentle has quit IRC | 18:17 | |
*** achanda has joined #openstack-dev | 18:18 | |
*** alwaysnoone has joined #openstack-dev | 18:18 | |
*** ukalifon has joined #openstack-dev | 18:19 | |
*** The_Knight has quit IRC | 18:19 | |
*** samueldm1 has quit IRC | 18:21 | |
*** samueldmq has joined #openstack-dev | 18:21 | |
*** xarses has quit IRC | 18:22 | |
*** jkraj has joined #openstack-dev | 18:22 | |
*** xarses has joined #openstack-dev | 18:22 | |
*** xarses has quit IRC | 18:23 | |
*** xarses has joined #openstack-dev | 18:23 | |
*** ukalifon has quit IRC | 18:23 | |
*** sputnik13 has joined #openstack-dev | 18:25 | |
*** stevemar has joined #openstack-dev | 18:25 | |
*** piet has quit IRC | 18:26 | |
*** dizquierdo has quit IRC | 18:26 | |
*** ukalifon1 has joined #openstack-dev | 18:26 | |
*** zackf has joined #openstack-dev | 18:26 | |
*** _cjones_ has quit IRC | 18:27 | |
*** drjones has joined #openstack-dev | 18:27 | |
*** ybathia has joined #openstack-dev | 18:27 | |
*** ybathia_ has joined #openstack-dev | 18:28 | |
*** onthecly has joined #openstack-dev | 18:28 | |
*** dims is now known as dimsum__ | 18:30 | |
*** ybathia has quit IRC | 18:32 | |
*** ybathia_ is now known as ybathia | 18:32 | |
*** itxaka has quit IRC | 18:32 | |
*** jtomasek__ has joined #openstack-dev | 18:32 | |
*** onthecly has quit IRC | 18:32 | |
*** egallen has quit IRC | 18:33 | |
*** neilus has joined #openstack-dev | 18:33 | |
*** annegentle has joined #openstack-dev | 18:34 | |
*** dizquierdo has joined #openstack-dev | 18:34 | |
*** dalees has quit IRC | 18:35 | |
*** hseipp has quit IRC | 18:35 | |
*** kushal has quit IRC | 18:35 | |
*** neilus has quit IRC | 18:38 | |
*** annegentle has quit IRC | 18:38 | |
*** Swami has joined #openstack-dev | 18:39 | |
*** haleyb has quit IRC | 18:39 | |
*** egallen has joined #openstack-dev | 18:40 | |
*** xarses_ has joined #openstack-dev | 18:41 | |
*** spandhe has joined #openstack-dev | 18:43 | |
*** xarses has quit IRC | 18:44 | |
*** spandhe has quit IRC | 18:44 | |
*** geguileo has quit IRC | 18:45 | |
*** zenoway has joined #openstack-dev | 18:46 | |
*** sputnik13 has quit IRC | 18:47 | |
*** mylu has joined #openstack-dev | 18:47 | |
*** yeylon has joined #openstack-dev | 18:48 | |
*** mturpin has quit IRC | 18:48 | |
*** kushal has joined #openstack-dev | 18:49 | |
*** e0ne has joined #openstack-dev | 18:50 | |
*** zenoway has quit IRC | 18:50 | |
*** jtomasek__ has quit IRC | 18:51 | |
*** spzala has quit IRC | 18:52 | |
*** mylu has quit IRC | 18:52 | |
*** haleyb has joined #openstack-dev | 18:53 | |
*** lpetrut has joined #openstack-dev | 18:54 | |
*** vgridnev has joined #openstack-dev | 18:55 | |
*** mylu has joined #openstack-dev | 18:55 | |
*** shardy has quit IRC | 18:59 | |
*** 77CAAFNN9 has quit IRC | 19:01 | |
*** mylu has quit IRC | 19:01 | |
*** haomaiwang has joined #openstack-dev | 19:01 | |
*** cfh has quit IRC | 19:01 | |
*** The_Knight has joined #openstack-dev | 19:02 | |
*** sputnik13 has joined #openstack-dev | 19:03 | |
*** mylu has joined #openstack-dev | 19:03 | |
*** ijw_ has joined #openstack-dev | 19:04 | |
*** ukalifon1 has quit IRC | 19:04 | |
*** abregman|afk has quit IRC | 19:06 | |
*** Akanksha08 has left #openstack-dev | 19:06 | |
*** vgridnev has quit IRC | 19:06 | |
*** SridharG has quit IRC | 19:07 | |
*** ijw has quit IRC | 19:07 | |
*** nadeem has quit IRC | 19:08 | |
*** onthecly has joined #openstack-dev | 19:09 | |
*** spandhe has joined #openstack-dev | 19:10 | |
*** anthonyper has quit IRC | 19:11 | |
*** anthonyper has joined #openstack-dev | 19:12 | |
*** zenoway has joined #openstack-dev | 19:12 | |
*** eil397 has joined #openstack-dev | 19:13 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 19:14 | |
*** harshs has joined #openstack-dev | 19:15 | |
*** stevemar has quit IRC | 19:20 | |
*** spzala has joined #openstack-dev | 19:20 | |
*** stevemar has joined #openstack-dev | 19:20 | |
*** cfh has joined #openstack-dev | 19:20 | |
*** daemontool has quit IRC | 19:21 | |
*** dizquierdo has quit IRC | 19:22 | |
*** spandhe has quit IRC | 19:23 | |
*** novas0x2a|laptop has joined #openstack-dev | 19:23 | |
*** spzala has quit IRC | 19:24 | |
*** salv-orlando has quit IRC | 19:24 | |
*** stevemar has quit IRC | 19:24 | |
*** spzala has joined #openstack-dev | 19:25 | |
*** daemontool has joined #openstack-dev | 19:25 | |
*** bauzas is now known as bauwser | 19:27 | |
*** mylu has quit IRC | 19:29 | |
*** spandhe has joined #openstack-dev | 19:29 | |
*** mylu has joined #openstack-dev | 19:31 | |
*** hvprash has joined #openstack-dev | 19:31 | |
*** ybathia has quit IRC | 19:32 | |
*** stevemar has joined #openstack-dev | 19:35 | |
*** hvprash has quit IRC | 19:35 | |
*** onthecly has quit IRC | 19:36 | |
*** xarses_ has quit IRC | 19:36 | |
*** onthecly has joined #openstack-dev | 19:36 | |
*** xarses_ has joined #openstack-dev | 19:37 | |
*** mylu has quit IRC | 19:37 | |
*** vgridnev has joined #openstack-dev | 19:39 | |
*** krotscheck is now known as krotscheck_dcm | 19:39 | |
*** jtomasek__ has joined #openstack-dev | 19:43 | |
*** The_Knight has quit IRC | 19:43 | |
*** The_Knight has joined #openstack-dev | 19:43 | |
*** avarner_ has quit IRC | 19:44 | |
*** egallen has quit IRC | 19:45 | |
*** electrofelix has quit IRC | 19:46 | |
*** ZZelle_ has joined #openstack-dev | 19:46 | |
*** mvk has joined #openstack-dev | 19:46 | |
*** annegentle has joined #openstack-dev | 19:50 | |
*** egallen has joined #openstack-dev | 19:52 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 19:52 | |
*** spandhe has quit IRC | 19:53 | |
*** mylu has joined #openstack-dev | 19:56 | |
*** notnownikki has quit IRC | 19:58 | |
*** jwcroppe has quit IRC | 19:58 | |
*** jwcroppe has joined #openstack-dev | 19:59 | |
*** agireud has quit IRC | 20:00 | |
*** haomaiwang has quit IRC | 20:01 | |
*** zackf has quit IRC | 20:01 | |
*** haomaiwang has joined #openstack-dev | 20:01 | |
*** Lee1092 has quit IRC | 20:02 | |
*** agireud has joined #openstack-dev | 20:02 | |
*** vgridnev has quit IRC | 20:03 | |
*** Marga_ has quit IRC | 20:04 | |
*** doug-fis_ has joined #openstack-dev | 20:05 | |
*** jrcloud has joined #openstack-dev | 20:05 | |
*** gberginc has joined #openstack-dev | 20:06 | |
*** doug-fish has quit IRC | 20:08 | |
*** ijw_ has quit IRC | 20:09 | |
*** vuntz has quit IRC | 20:09 | |
*** jrcloud has quit IRC | 20:10 | |
*** doug-fis_ has quit IRC | 20:10 | |
*** vuntz has joined #openstack-dev | 20:10 | |
*** vuntz has quit IRC | 20:10 | |
*** vuntz has joined #openstack-dev | 20:10 | |
*** spandhe has joined #openstack-dev | 20:13 | |
*** dimtruck is now known as zz_dimtruck | 20:14 | |
*** zz_dimtruck is now known as dimtruck | 20:15 | |
*** jtomasek__ has quit IRC | 20:16 | |
*** annegentle has quit IRC | 20:16 | |
*** pballand has quit IRC | 20:20 | |
*** jbell8 has quit IRC | 20:21 | |
*** numan_ has quit IRC | 20:21 | |
*** neilus has joined #openstack-dev | 20:21 | |
*** harshs has quit IRC | 20:22 | |
*** salv-orlando has joined #openstack-dev | 20:24 | |
*** cdub has quit IRC | 20:24 | |
*** penick has quit IRC | 20:25 | |
*** onthecly has quit IRC | 20:25 | |
*** cdub has joined #openstack-dev | 20:25 | |
*** stevemar has quit IRC | 20:26 | |
*** pballand has joined #openstack-dev | 20:26 | |
*** neilus has quit IRC | 20:26 | |
*** stevemar has joined #openstack-dev | 20:26 | |
*** annegentle has joined #openstack-dev | 20:27 | |
*** avarner has joined #openstack-dev | 20:27 | |
*** cloudtrainme has joined #openstack-dev | 20:29 | |
*** annegentle has quit IRC | 20:29 | |
*** jtomasek__ has joined #openstack-dev | 20:31 | |
*** lpetrut has quit IRC | 20:32 | |
*** zenoway has quit IRC | 20:34 | |
*** ijw has joined #openstack-dev | 20:35 | |
*** mylu has quit IRC | 20:37 | |
*** hvprash has joined #openstack-dev | 20:37 | |
*** zenoway has joined #openstack-dev | 20:38 | |
*** david-lyle has joined #openstack-dev | 20:39 | |
*** ijw_ has joined #openstack-dev | 20:39 | |
*** ijw has quit IRC | 20:40 | |
*** mylu has joined #openstack-dev | 20:40 | |
*** egallen has quit IRC | 20:42 | |
*** ceberous has joined #openstack-dev | 20:42 | |
*** xemdetia has quit IRC | 20:43 | |
*** ijw_ has quit IRC | 20:44 | |
*** rtheis has quit IRC | 20:44 | |
*** achanda has quit IRC | 20:45 | |
*** yeylon has quit IRC | 20:45 | |
*** egallen has joined #openstack-dev | 20:46 | |
*** hvprash_ has joined #openstack-dev | 20:49 | |
*** jmckind has quit IRC | 20:50 | |
*** hvprash has quit IRC | 20:52 | |
*** nadeem has joined #openstack-dev | 20:53 | |
*** mylu has quit IRC | 20:53 | |
*** yeylon has joined #openstack-dev | 20:53 | |
*** nadeem has quit IRC | 20:55 | |
*** david-lyle has quit IRC | 20:55 | |
*** david-lyle_ has joined #openstack-dev | 20:55 | |
*** alexpilotti has quit IRC | 20:55 | |
*** nadeem has joined #openstack-dev | 20:56 | |
*** mylu has joined #openstack-dev | 20:57 | |
*** jbell8 has joined #openstack-dev | 20:58 | |
*** alexpilotti has joined #openstack-dev | 20:58 | |
*** annegentle has joined #openstack-dev | 20:58 | |
*** achanda has joined #openstack-dev | 20:59 | |
*** david-lyle_ is now known as david-lyle | 21:00 | |
*** jgrassler has quit IRC | 21:00 | |
*** tongli has quit IRC | 21:00 | |
*** haomaiwang has quit IRC | 21:01 | |
*** raildo is now known as raildo-afk | 21:01 | |
*** jgrassler has joined #openstack-dev | 21:01 | |
*** mylu has quit IRC | 21:01 | |
*** haomaiwang has joined #openstack-dev | 21:01 | |
*** annegentle has quit IRC | 21:01 | |
*** achanda has quit IRC | 21:06 | |
*** mylu has joined #openstack-dev | 21:08 | |
*** gordc has quit IRC | 21:09 | |
*** mylu has quit IRC | 21:10 | |
*** mylu has joined #openstack-dev | 21:10 | |
*** infra-red has joined #openstack-dev | 21:10 | |
*** achanda has joined #openstack-dev | 21:12 | |
*** ceberous has quit IRC | 21:13 | |
*** ijw has joined #openstack-dev | 21:14 | |
*** dthomsen has quit IRC | 21:14 | |
*** safchain has quit IRC | 21:19 | |
*** spzala has quit IRC | 21:20 | |
*** vijendar has quit IRC | 21:20 | |
*** e0ne has quit IRC | 21:20 | |
*** hvprash has joined #openstack-dev | 21:21 | |
*** boris-42 has joined #openstack-dev | 21:23 | |
*** aysyd has quit IRC | 21:24 | |
*** zackf has joined #openstack-dev | 21:24 | |
*** hvprash_ has quit IRC | 21:24 | |
*** vijendar has joined #openstack-dev | 21:25 | |
*** jprovazn has quit IRC | 21:25 | |
*** stevemar has quit IRC | 21:27 | |
*** Marga_ has joined #openstack-dev | 21:28 | |
*** stevemar has joined #openstack-dev | 21:28 | |
*** kgiusti has left #openstack-dev | 21:29 | |
*** jbell8 has quit IRC | 21:31 | |
*** achanda has quit IRC | 21:31 | |
*** jbell8 has joined #openstack-dev | 21:32 | |
*** stevemar_ has joined #openstack-dev | 21:32 | |
*** hvprash_ has joined #openstack-dev | 21:32 | |
*** jtomasek__ has quit IRC | 21:32 | |
*** stevemar has quit IRC | 21:33 | |
*** kbringard has quit IRC | 21:34 | |
*** hvprash has quit IRC | 21:35 | |
*** kbringard has joined #openstack-dev | 21:35 | |
*** hvprash has joined #openstack-dev | 21:35 | |
*** hvprash has quit IRC | 21:36 | |
*** hvprash has joined #openstack-dev | 21:36 | |
*** hvprash_ has quit IRC | 21:38 | |
*** achanda has joined #openstack-dev | 21:41 | |
*** hvprash has quit IRC | 21:41 | |
*** hvprash has joined #openstack-dev | 21:42 | |
*** Marga_ has quit IRC | 21:43 | |
*** yeylon has quit IRC | 21:47 | |
*** kacieee has quit IRC | 21:47 | |
*** infra-red has quit IRC | 21:48 | |
*** Marga_ has joined #openstack-dev | 21:49 | |
*** Marga_ has quit IRC | 21:49 | |
*** Marga_ has joined #openstack-dev | 21:49 | |
*** Marga_ has quit IRC | 21:49 | |
*** xenogear has quit IRC | 21:49 | |
*** xyang1 has quit IRC | 21:50 | |
*** Marga_ has joined #openstack-dev | 21:50 | |
*** xenogear has joined #openstack-dev | 21:50 | |
*** jbell8 has quit IRC | 21:55 | |
*** jbell8 has joined #openstack-dev | 21:56 | |
*** egallen has quit IRC | 21:58 | |
*** adrianofr has quit IRC | 22:00 | |
*** haomaiwang has quit IRC | 22:01 | |
*** haomaiwa_ has joined #openstack-dev | 22:01 | |
*** hvprash_ has joined #openstack-dev | 22:01 | |
*** dims has joined #openstack-dev | 22:04 | |
*** hvprash has quit IRC | 22:04 | |
*** dimsum__ has quit IRC | 22:04 | |
*** jbell8 has quit IRC | 22:04 | |
*** jbell8 has joined #openstack-dev | 22:05 | |
*** neilus has joined #openstack-dev | 22:08 | |
*** hvprash_ has quit IRC | 22:09 | |
*** cdent is now known as dentures | 22:10 | |
*** neilus has quit IRC | 22:13 | |
*** pushkaru has quit IRC | 22:14 | |
*** wootehfoot has joined #openstack-dev | 22:15 | |
*** zackf has quit IRC | 22:16 | |
*** gyee has quit IRC | 22:21 | |
*** geguileo has joined #openstack-dev | 22:22 | |
*** achampion has quit IRC | 22:23 | |
*** lascii is now known as alaski | 22:24 | |
*** stevemar_ has quit IRC | 22:24 | |
*** hvprash has joined #openstack-dev | 22:24 | |
*** stevemar has joined #openstack-dev | 22:25 | |
*** pnavarro|afk has quit IRC | 22:26 | |
*** vijendar has quit IRC | 22:27 | |
*** rfolco has quit IRC | 22:27 | |
*** achampion has joined #openstack-dev | 22:29 | |
*** seroyer has left #openstack-dev | 22:29 | |
*** daemontool has quit IRC | 22:30 | |
*** gyee has joined #openstack-dev | 22:34 | |
*** kacieee has joined #openstack-dev | 22:38 | |
*** MaxPC has quit IRC | 22:39 | |
*** dentures has quit IRC | 22:39 | |
*** xenogear has quit IRC | 22:39 | |
*** salv-orl_ has joined #openstack-dev | 22:40 | |
*** baoli has quit IRC | 22:41 | |
*** salv-orlando has quit IRC | 22:43 | |
*** cbader has quit IRC | 22:43 | |
*** ninag has quit IRC | 22:44 | |
*** vishwanathj has joined #openstack-dev | 22:46 | |
*** kobis has quit IRC | 22:46 | |
*** amitgandhinz has quit IRC | 22:47 | |
*** fultonj_ has quit IRC | 22:49 | |
*** mdorman has quit IRC | 22:51 | |
*** topol_ has joined #openstack-dev | 22:51 | |
*** garthb_ has joined #openstack-dev | 22:53 | |
*** garthb has quit IRC | 22:53 | |
*** geguileo has quit IRC | 22:53 | |
*** mylu has quit IRC | 22:54 | |
*** erlon has quit IRC | 22:56 | |
*** kbringard has quit IRC | 22:57 | |
*** geguileo has joined #openstack-dev | 22:58 | |
*** haleyb has quit IRC | 22:59 | |
*** vishwanathj has quit IRC | 23:00 | |
*** haomaiwa_ has quit IRC | 23:01 | |
*** haomaiwang has joined #openstack-dev | 23:01 | |
*** mylu has joined #openstack-dev | 23:02 | |
*** gargola has joined #openstack-dev | 23:06 | |
*** dims_ has joined #openstack-dev | 23:06 | |
*** neilus has joined #openstack-dev | 23:08 | |
*** dims has quit IRC | 23:10 | |
*** jckasper has quit IRC | 23:10 | |
*** nmagnezi_ has joined #openstack-dev | 23:10 | |
*** jckasper has joined #openstack-dev | 23:11 | |
*** neilus has quit IRC | 23:12 | |
*** dimtruck is now known as zz_dimtruck | 23:14 | |
*** jckasper has quit IRC | 23:16 | |
bknudson_ | sdague: if you don't want to wait until thursday to discuss -- I've been posting my catalog schema work to github - https://github.com/brantlk/service-catalog-schema | 23:16 |
*** matrohon has quit IRC | 23:20 | |
*** bauwser is now known as bauzas | 23:23 | |
*** slberger has left #openstack-dev | 23:23 | |
*** gargola has quit IRC | 23:24 | |
*** ninag has joined #openstack-dev | 23:25 | |
*** nmagnezi_ has quit IRC | 23:25 | |
*** ninag has quit IRC | 23:25 | |
*** kacieee has quit IRC | 23:25 | |
*** MattMan has quit IRC | 23:26 | |
*** MattMan has joined #openstack-dev | 23:26 | |
*** The_Knight has quit IRC | 23:29 | |
*** jbell8 has quit IRC | 23:29 | |
*** achampion has quit IRC | 23:30 | |
*** hvprash_ has joined #openstack-dev | 23:30 | |
*** jbell8 has joined #openstack-dev | 23:30 | |
*** jtomasek_ has quit IRC | 23:31 | |
*** mylu has quit IRC | 23:31 | |
*** mylu has joined #openstack-dev | 23:31 | |
*** mylu has quit IRC | 23:32 | |
*** hvprash has quit IRC | 23:33 | |
*** jbell8 has quit IRC | 23:34 | |
*** cfh has quit IRC | 23:34 | |
*** jbell8 has joined #openstack-dev | 23:35 | |
*** bobh has quit IRC | 23:35 | |
*** cloudtrainme has quit IRC | 23:36 | |
*** geekinutah has joined #openstack-dev | 23:37 | |
*** mgarza has quit IRC | 23:37 | |
*** hvprash has joined #openstack-dev | 23:44 | |
*** hvprash_ has quit IRC | 23:46 | |
*** geguileo has quit IRC | 23:49 | |
*** mrkz has quit IRC | 23:50 | |
*** mvk has quit IRC | 23:50 | |
*** mylu has joined #openstack-dev | 23:54 | |
*** mylu has quit IRC | 23:58 | |
*** geguileo has joined #openstack-dev | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!