Monday, 2017-02-27

*** ansmith_ has joined #openstack-oslo00:10
*** salv-orl_ has joined #openstack-oslo00:17
*** salv-orlando has quit IRC00:20
*** dimtruck is now known as zz_dimtruck00:20
*** zz_dimtruck is now known as dimtruck00:20
*** oanson has quit IRC00:21
*** dimtruck is now known as zz_dimtruck00:30
*** oanson has joined #openstack-oslo00:30
*** ansmith_ has quit IRC00:32
*** ansmith has quit IRC00:33
*** ansmith_ has joined #openstack-oslo00:46
*** ansmith has joined #openstack-oslo00:46
*** yassine has joined #openstack-oslo00:52
*** tovin07 has joined #openstack-oslo01:08
*** zz_dimtruck is now known as dimtruck01:18
*** lei-zh has joined #openstack-oslo01:33
*** ansmith_ has quit IRC01:34
*** ansmith has quit IRC01:34
*** sdague has joined #openstack-oslo01:42
*** mriedem has quit IRC01:42
*** sdague has quit IRC02:01
*** gcb has joined #openstack-oslo02:03
*** dimtruck is now known as zz_dimtruck02:14
openstackgerritChangBo Guo(gcb) proposed openstack/oslo.messaging master: Move decorator updated_kwarg_default_value to right place  https://review.openstack.org/42869302:38
*** yamamoto_ has joined #openstack-oslo02:39
*** gcb has quit IRC03:39
*** gcb has joined #openstack-oslo03:52
*** yamamoto_ has quit IRC03:59
*** zz_dimtruck is now known as dimtruck04:31
*** yamamoto_ has joined #openstack-oslo04:52
*** gcb has quit IRC05:04
*** rezroo has quit IRC05:13
*** zhangguoqing has joined #openstack-oslo05:25
*** rezroo has joined #openstack-oslo05:27
*** dimtruck is now known as zz_dimtruck05:30
*** gcb has joined #openstack-oslo05:32
*** amotoki has quit IRC05:40
*** zhangguoqing has quit IRC05:42
*** zhangguoqing has joined #openstack-oslo05:42
*** amotoki has joined #openstack-oslo05:51
*** amotoki has quit IRC05:56
*** rezroo has quit IRC05:58
*** amotoki has joined #openstack-oslo06:00
*** amotoki_ has joined #openstack-oslo06:17
*** salv-orlando has joined #openstack-oslo06:17
*** salv-orlando has quit IRC06:20
*** amotoki has quit IRC06:20
*** salv-orlando has joined #openstack-oslo06:20
*** salv-orl_ has quit IRC06:21
*** amotoki has joined #openstack-oslo06:25
*** amotoki_ has quit IRC06:27
*** amotoki has quit IRC06:31
*** nkrinner_afk is now known as nkrinner06:41
*** amotoki has joined #openstack-oslo06:44
*** rcernin has joined #openstack-oslo07:20
*** pcaruana has joined #openstack-oslo07:20
*** rcernin has quit IRC07:23
*** rcernin has joined #openstack-oslo07:23
*** eezhova has joined #openstack-oslo07:45
*** yamahata has joined #openstack-oslo08:11
*** shardy has joined #openstack-oslo08:17
*** salv-orlando has quit IRC08:22
*** e0ne has joined #openstack-oslo08:30
*** eezhova has quit IRC08:34
*** mixos has quit IRC08:36
*** amotoki_ has joined #openstack-oslo08:37
*** amotoki has quit IRC08:37
*** shardy has quit IRC08:53
*** shardy has joined #openstack-oslo08:53
openstackgerritMehdi Abaakouk (sileht) proposed openstack/oslo.messaging master: Validate the transport url query string  https://review.openstack.org/43730108:54
openstackgerritMehdi Abaakouk (sileht) proposed openstack/oslo.messaging master: drivers: use common.ConfigOptsProxy everywhere  https://review.openstack.org/43726508:54
*** zzzeek has quit IRC09:00
*** zzzeek has joined #openstack-oslo09:00
*** jpena|away is now known as jpena09:07
*** eezhova has joined #openstack-oslo09:09
*** lucas-afk is now known as lucasagomes09:30
*** yamamoto_ has quit IRC09:37
*** gcb has quit IRC09:55
*** lei-zh has quit IRC09:56
*** yamahata has quit IRC10:44
*** aarefiev_afk is now known as aarefiev10:47
*** yamamoto has joined #openstack-oslo11:02
*** yamamoto has quit IRC11:04
*** sambetts|afk is now known as sambetts11:05
*** jaosorior has joined #openstack-oslo11:08
jaosoriorsileht: I can change this https://review.openstack.org/#/c/438377/1/ceilometermiddleware/swift.py to use default_config_files instead. But, why do you think using conf['__file__'] is hacky? That is pretty much the way to get the config file using paste. Anything else you would suggest?11:10
silehtjaosorior, because swift-proxy.conf is not a oslo.config configuration file, but an api-paste configuration file11:11
jaosoriorsileht: well, all the other swift middleware has access to it11:11
silehtjaosorior, swift use python configparser, while oslo.config uses it's own parser11:11
silehtjaosorior, I don't think their use oslo.config to read it11:11
jaosoriorsileht: yes they do11:12
silehtjaosorior, swift doesn't even depend on oslo.config11:13
jaosoriorah, crap, it was six configparser, not oslo. OK, I had gotten confused11:13
jaosoriorsileht: so, you're right, they initialize it like this https://github.com/openstack/swift/blob/master/swift/common/middleware/copy.py#L29211:13
*** nicolasbock has joined #openstack-oslo11:14
jaosoriorusing conf['__file__'] to read the proxy's configuration file11:14
silehtjaosorior, have you take a look of the oslo.messaging change to be able to pass any driver configuration through the url ?11:15
jaosoriorsileht: right, I did; but that's only gonna work for rabbit. qpid doesn't take the same ssl parameters11:15
*** nicolasbock has quit IRC11:16
silehtjaosorior, that works for all parameters11:16
silehtjaosorior, and all drivers11:16
*** nicolasbock has joined #openstack-oslo11:16
jaosoriorsileht: yeah, and that's quite a nice feature to have. thanks11:16
jaosoriorhowever, if forming the transport_url is still quite problematic, since qpid takes differnt ssl parameters from rabbit11:17
jaosoriorso, actually deploying this stuff, requires a lot of extra logic11:17
jaosoriornot so nice deployment experience11:17
jaosoriorif we would standardize the parameters a bit more, then this would be great11:18
silehtjaosorior, agreed, that should be fixed in oslo.messaging11:18
jaosoriorok11:21
jaosoriorso11:21
jaosoriorright now, rabbitmq needs the rabbit_use_ssl parameter in order to work11:21
jaosoriorsileht: what do you think about changing that to just "ssl"?11:21
silehtjaosorior, yes, and in section [oslo_messaging_rabbit], we should remove the rabbit_ prefix for all parameters11:22
jaosoriorsileht: I introduced an x-ssl parameter for pyngus, so the amqp driver could use the same parameter as well.11:23
jaosorioranyway, lets do that for rabbit first11:24
jaosoriorsileht: In a first iteration, the old kombu_ and rabbit_ parameters should still work, right?11:25
silehtjaosorior, yes, oslo.config provide a ton of helpers for the deprecation path11:25
silehtlike depreacated_opts/deprecated_name/deprecated_group/..11:26
jaosoriorsileht: deprecated_opts? I don't find that on the documentation11:27
jaosoriorsileht: if I don't specify the deprecated_group, will it take the same group the new parameter is at?11:28
silehtjaosorior, maybe undocumented: https://github.com/openstack/oslo.config/blob/master/oslo_config/cfg.py#L86111:28
silehtjaosorior, https://docs.openstack.org/developer/oslo.config/opts.html#oslo_config.cfg.DeprecatedOpt11:29
*** sdague has joined #openstack-oslo11:31
*** boden has joined #openstack-oslo11:31
*** yamamoto has joined #openstack-oslo11:38
*** szaher_ has quit IRC11:45
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.messaging master: RabbitMQ: Standardize SSL parameters  https://review.openstack.org/43845511:45
jaosoriorsileht: https://review.openstack.org/#/c/438455/11:45
*** szaher has joined #openstack-oslo11:46
*** sdague_ has joined #openstack-oslo11:53
*** sdague__ has joined #openstack-oslo11:53
*** sdague has quit IRC11:53
*** sdague__ has quit IRC11:54
*** sdague_ has quit IRC11:54
*** sdague has joined #openstack-oslo11:55
*** sdague_ has joined #openstack-oslo11:55
*** yamahata has joined #openstack-oslo12:00
*** yamahata_ has joined #openstack-oslo12:01
*** yamahata has quit IRC12:02
silehtjaosorior, perfect thx!12:04
*** yamamoto has quit IRC12:06
*** yamamoto has joined #openstack-oslo12:07
*** jpena is now known as jpena|lunch12:07
*** yamamoto has quit IRC12:11
*** yamamoto has joined #openstack-oslo12:26
*** yamamoto has quit IRC12:30
*** kgiusti has left #openstack-oslo12:32
*** sdague has quit IRC12:32
*** sdague_ is now known as sdague12:33
*** yamamoto has joined #openstack-oslo12:41
*** yamamoto has quit IRC12:47
*** yamamoto has joined #openstack-oslo12:56
*** nkrinner has quit IRC12:57
*** lucasagomes is now known as lucas-hungry12:57
openstackgerritJulien Danjou proposed openstack/tooz master: Rewrite heartbeat runner with event  https://review.openstack.org/43848212:57
*** nkrinner has joined #openstack-oslo13:01
*** yamamoto has quit IRC13:01
*** jpena|lunch is now known as jpena13:04
*** zhangguoqing has quit IRC13:09
*** zhangguoqing has joined #openstack-oslo13:10
*** yamamoto has joined #openstack-oslo13:11
*** e0ne has quit IRC13:15
openstackgerritMehdi Abaakouk (sileht) proposed openstack/oslo.messaging master: Validate the transport url query string  https://review.openstack.org/43730113:15
openstackgerritMehdi Abaakouk (sileht) proposed openstack/oslo.messaging master: drivers: use common.ConfigOptsProxy everywhere  https://review.openstack.org/43726513:15
*** yamamoto has quit IRC13:16
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.messaging master: RabbitMQ: Standardize SSL parameters  https://review.openstack.org/43845513:16
*** eck` is now known as eck`gone13:19
*** yamamoto has joined #openstack-oslo13:26
*** yamamoto has quit IRC13:30
*** yamamoto has joined #openstack-oslo13:41
*** kgiusti has joined #openstack-oslo13:44
*** yamamoto has quit IRC13:46
*** tongli has joined #openstack-oslo13:53
*** ansmith_ has joined #openstack-oslo13:54
*** ansmith has joined #openstack-oslo13:54
*** yamamoto has joined #openstack-oslo13:56
*** pc_m has joined #openstack-oslo13:59
*** pc_m has left #openstack-oslo13:59
*** yamamoto has quit IRC14:01
*** ihrachys has joined #openstack-oslo14:02
*** zz_dimtruck is now known as dimtruck14:08
*** amotoki_ has quit IRC14:09
*** nkrinner has quit IRC14:09
*** lucas-hungry is now known as lucasagomes14:11
*** yamamoto has joined #openstack-oslo14:11
*** mriedem has joined #openstack-oslo14:12
openstackgerritgordon chung proposed openstack/oslo.messaging master: drop topic keyword from Notifier  https://review.openstack.org/43395014:13
*** nkrinner has joined #openstack-oslo14:14
*** salv-orlando has joined #openstack-oslo14:15
*** yamamoto has quit IRC14:17
*** amotoki has joined #openstack-oslo14:24
*** yamamoto has joined #openstack-oslo14:26
*** yamamoto has quit IRC14:31
openstackgerritStephen Finucane proposed openstack-dev/pbr master: doc: Clarify sections in 'setup.cfg'  https://review.openstack.org/43850914:32
openstackgerritStephen Finucane proposed openstack-dev/pbr master: Stop using 'warnerrors'  https://review.openstack.org/43851014:32
openstackgerritStephen Finucane proposed openstack-dev/pbr master: tox: Don't set skipsdist=True  https://review.openstack.org/43851114:32
openstackgerritMerged openstack/oslo.vmware master: Improve logging for task updates  https://review.openstack.org/35021814:34
*** eck`gone is now known as eck`14:37
*** dimtruck is now known as zz_dimtruck14:38
*** amotoki has quit IRC14:39
*** yamamoto has joined #openstack-oslo14:42
*** mhickey has joined #openstack-oslo14:42
*** amotoki has joined #openstack-oslo14:45
*** yamamoto has quit IRC14:46
*** amotoki has quit IRC14:53
jaosoriorsileht: so, should I drop this https://review.openstack.org/#/c/438377/ ? I still think it's a valid feature. But I could change the implementation14:56
*** yamamoto has joined #openstack-oslo14:56
*** yamamoto has quit IRC15:01
*** zz_dimtruck is now known as dimtruck15:05
*** amotoki has joined #openstack-oslo15:09
*** gcb has joined #openstack-oslo15:10
*** yamamoto has joined #openstack-oslo15:11
*** yamamoto has quit IRC15:16
*** mriedem1 has joined #openstack-oslo15:22
*** mriedem has quit IRC15:23
*** gordc has joined #openstack-oslo15:23
*** nkrinner is now known as nkrinner_afk15:25
*** yamamoto has joined #openstack-oslo15:26
*** yamamoto has quit IRC15:31
jaosoriorkgiusti: well, it doesn't need to be all in one go. I could just change the rabbitmq ones to the ones that are on the etherpad15:33
*** otherwiseguy has quit IRC15:34
*** zhangguoqing has quit IRC15:34
jaosoriorkgiusti: talking about the standarization of configurations in oslo.messaging15:35
kgiustijaosorior: true that - the names in the epad aren't necessarily better - feel free to use the originals you proposed.15:36
kgiustijaosorior: I just didn't want you to invest a lot of time in something that would change in the Pike release...15:36
kgiustijaosorior: but if you're ok with the implementation changing... go for it.15:37
*** mriedem1 is now known as mriedem15:37
jaosoriorkgiusti: I also planned to add the same "ssl" configuration option to the amqp driver, using the x-ssl option15:37
*** yamamoto has joined #openstack-oslo15:37
kgiustijaosorior: ah!  You're the dude that proposed that new keyword, right?15:38
*** otherwiseguy has joined #openstack-oslo15:38
kgiustijaosorior: <I think>...15:38
jaosorioryes15:39
jaosoriorJAORMX in github15:39
kgiustijaosorior: sweet - thanks a lot for that.   I've posted a RC1 with that change up at testpypi just fyi15:40
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.messaging master: Add "ssl" option for amqp driver  https://review.openstack.org/43856315:40
jaosoriorkgiusti: something like that ^^15:40
kgiustijaosorior: kk - I'll take a look at that.15:41
jaosoriorkgiusti: I saw, thanks for the release. I've been dealing with some other stuff, but soon I'll try to test it up.15:41
kgiustijaosorior: np - had some other related fixes that need to go in for the next release so I'm in no rush to release :)15:41
*** yamamoto has quit IRC15:42
jaosoriorkgiusti: so, what's the end-goal? Are you planning on removing the driver-specific configuration groups and just configure the drivers on the messaging group?15:43
*** mixos has joined #openstack-oslo15:44
kgiustijaosorior: not all config options - the driver specific ones will remain.  Any that we can standardize should be standardizes (SSL is the ideal example), but15:44
kgiustijaosorior: we'd still let the options "live" under the driver specific groups.  That way15:45
kgiustijaosorior: one could configure say rabbitmq with its own SSL configuration, and also zmq with a different SSL config - since we can use multiple drivers now15:46
kgiustijaosorior: one for Notifications, another for RPC15:46
jaosoriorkgiusti: I like the idea15:46
kgiustijaosorior: IOW - we're not promoting stuff up to the DEFAULT group.15:46
kgiustijaosorior: +1 - common names, help strings, and default values (if possible - may be a bit tricky, needs research)15:47
*** Syed__ has joined #openstack-oslo15:47
jaosoriorok15:48
jaosoriorkgiusti: well, I could modify the rabbitmq submission to match whatever names are preferred. And subsequently change the amqp as well.15:49
jaosoriorkgiusti: I'm trying to enable SSL in the message broker in TripleO, and this stuff has been blocking me for a long time already. Really would like to get that working15:49
kgiustijaosorior: sounds good to me - let folks "kick the tires" with the new names sooner rather than later.15:50
kgiustijaosorior: did you want to update that existing review?15:51
jaosoriorkgiusti: well, if you would prefer me to change any name, I could.15:51
jaosoriorkgiusti: right now, the way that submission was done, I grabbed the names that are used by the amqp driver.15:52
jaosoriorcause I kinda liked those better15:52
kgiustijaosorior: :)  me too.15:52
kgiustijaosorior: I was planning on raising the naming stuff at today's meeting (openstack-meeting-alt in 5 minutes) to get feedback from more people15:53
jaosoriorkgiusti: I'll join as well15:53
jaosoriorlet me update the names in the etherpad15:53
kgiustijaosorior: great!15:53
gcbweekly meeting in 5 minutes at channel #openstack-meeting-alt15:55
jaosoriorkgiusti: should I like the rabbitmq review in that etherpad?15:56
kgiustijaosorior: please do15:57
jaosoriorkgiusti: also, having a topic name would help review those in gerrit. Any suggestions?15:57
kgiustijaosorior: It's pretty good IMHO - maybe just add "names" at the end: Standardize SSL parameter names (???)15:59
jaosoriorkgiusti: haha, oh, went a bit more verbose than that15:59
jaosoriorkgiusti: https://review.openstack.org/#/q/topic:messaging-standard-config-opts15:59
kgiustijaosorior: +115:59
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.messaging master: RabbitMQ: Standardize SSL parameter names  https://review.openstack.org/43845516:00
jaosoriorkgiusti: changed the name ^^16:00
kgiustijaosorior: great16:00
jaosoriorkgiusti: by the way, you -2ed the rabbitmq change. Still think it should be blocked?16:10
*** eezhova has quit IRC16:10
kgiustijaosorior: nope, I'll re-open it...16:10
*** jdandrea has quit IRC16:14
*** rcernin has quit IRC16:15
*** yamamoto has joined #openstack-oslo16:38
*** yamamoto has quit IRC16:44
*** mriedem has quit IRC16:44
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.messaging master: Add "ssl" option for amqp driver  https://review.openstack.org/43856316:44
*** mriedem has joined #openstack-oslo16:46
*** mixos has quit IRC16:50
*** takedakn has joined #openstack-oslo16:56
*** amotoki has quit IRC16:56
jaosoriorkgiusti: thanks for the review16:56
jaosoriorkgiusti: about amqp, what do you think we should do there regarding the "ssl" parameter? should it just set the x-ssl option? or should it work similarly to rabbitmq? where it's required for enabling SSL16:57
*** takedakn has quit IRC16:58
kgiustijaosorior: For backward compatibility, the driver will have to enable SSL if any of the SSL-related options are used, regardless of the setting of the "ssl" config option17:02
*** mixos has joined #openstack-oslo17:02
jaosoriorkgiusti: ok, so the current patch is fine then17:03
*** dimtruck is now known as zz_dimtruck17:04
* kgiusti looks at patch...17:04
*** zz_dimtruck is now known as dimtruck17:04
jaosoriorkgiusti: I guess it won't work yet since it would need to use the rc1 of pyngus, so it can wait17:05
kgiustijaosorior: yeah true that.  I'm good with your fix, maybe you should mark it WIP pending next release of pyngus (real soon now)...17:07
jaosoriorok17:09
*** mhickey has quit IRC17:12
*** david-lyle has joined #openstack-oslo17:17
*** bnemec has joined #openstack-oslo17:17
*** eezhova has joined #openstack-oslo17:20
*** david-lyle has quit IRC17:21
*** mhickey has joined #openstack-oslo17:27
jaosorioris the oslo.messaging CI broken?17:36
*** yamamoto has joined #openstack-oslo17:40
*** david-lyle has joined #openstack-oslo17:44
*** mhickey has quit IRC17:44
*** david-lyle has quit IRC17:45
*** yamamoto has quit IRC17:46
*** david-lyle has joined #openstack-oslo17:46
*** e0ne has joined #openstack-oslo17:48
*** david-lyle has quit IRC17:58
*** aarefiev is now known as aarefiev_afk18:00
*** david-lyle has joined #openstack-oslo18:01
*** jaosorior has quit IRC18:05
*** lucasagomes is now known as lucas-afk18:09
*** salv-orl_ has joined #openstack-oslo18:18
*** salv-orlando has quit IRC18:20
*** jpena is now known as jpena|away18:26
*** ansmith_ has quit IRC18:27
*** yamahata_ has quit IRC18:32
*** yamamoto has joined #openstack-oslo18:42
*** dharinic is now known as dharinic|lunch18:43
*** mtanino has joined #openstack-oslo18:46
*** yamamoto has quit IRC18:46
mtreinishharlowja: I generated one of those flame graphs for c-vol it's much more interesting (and makes a lot more sense) http://blog.kortar.org/wp-content/uploads/2017/02/c-vol.svg18:50
mtreinisheh, although I was trying to get it for c-api, so I'm still not sure of teh collection side18:51
harlowjaah, crap, forgot to open that in other browser18:51
harlowjalol18:51
harlowjakilling poor firefox18:51
harlowjalol18:51
mtreinishhaha18:51
mtreinishI got the file size down to ~3mb it's much better than the >20MB svgs from my first couple of attempts :)18:52
*** amotoki has joined #openstack-oslo18:52
*** amotoki has quit IRC18:53
harlowja:)18:53
*** amotoki has joined #openstack-oslo18:53
*** yamahata_ has joined #openstack-oslo18:57
harlowjamtreinish neat though, it looks to map to what i would expect19:00
harlowjaso that's a positive :19:00
harlowja:)19:00
harlowjamostly rpc, eventlet, some taskflow and some db and versionedobject stuff19:00
*** sambetts is now known as sambetts|afk19:01
*** shardy is now known as shardy_afk19:07
*** e0ne has quit IRC19:12
mtreinishharlowja: yep, and a couple of big ones from requests from glanceclient19:20
*** amotoki has quit IRC19:20
*** mhickey has joined #openstack-oslo19:22
*** e0ne has joined #openstack-oslo19:27
*** pcaruana has quit IRC19:29
*** yamahata_ has quit IRC19:33
*** e0ne has quit IRC19:34
*** yamamoto has joined #openstack-oslo19:42
*** Rockyg has joined #openstack-oslo19:45
*** yamamoto has quit IRC19:48
*** dharinic|lunch is now known as dharinic19:49
*** thumpba has joined #openstack-oslo19:54
*** salv-orl_ has quit IRC20:12
*** yamahata_ has joined #openstack-oslo20:14
*** ansmith_ has joined #openstack-oslo20:14
*** ansmith__ has joined #openstack-oslo20:14
*** ansmith_ has quit IRC20:14
*** ansmith__ has quit IRC20:14
*** yassine has quit IRC20:33
*** salv-orlando has joined #openstack-oslo20:39
*** eck` is now known as eck`gone20:44
*** yamamoto has joined #openstack-oslo20:44
*** yamamoto has quit IRC20:49
*** yassine has joined #openstack-oslo20:49
*** rcernin has joined #openstack-oslo20:52
*** tongli has quit IRC21:02
*** dimtruck is now known as zz_dimtruck21:05
*** yamamoto has joined #openstack-oslo21:06
*** yamamoto has quit IRC21:14
*** e0ne has joined #openstack-oslo21:19
*** kgiusti has quit IRC21:21
*** eezhova has quit IRC21:21
*** nicolasbock has quit IRC21:22
*** eck`gone is now known as eck`21:22
*** zz_dimtruck is now known as dimtruck21:29
*** mhickey has quit IRC21:37
*** lpetrut has joined #openstack-oslo21:40
*** lpetrut has quit IRC21:42
*** ansmith has quit IRC21:46
*** yamamoto has joined #openstack-oslo22:07
*** ihrachys has quit IRC22:08
*** e0ne has quit IRC22:14
*** shardy_afk has quit IRC22:23
*** ihrachys has joined #openstack-oslo22:27
*** mixos has quit IRC22:38
*** mriedem has quit IRC22:44
*** boden has quit IRC22:47
openstackgerritMerged openstack/oslo.messaging master: drop topic keyword from Notifier  https://review.openstack.org/43395023:05
*** ihrachys has quit IRC23:15
*** gordc has quit IRC23:23
*** rcernin has quit IRC23:41
*** ansmith has joined #openstack-oslo23:41
*** salv-orlando has quit IRC23:48
*** mixos has joined #openstack-oslo23:53
*** gcb has quit IRC23:55

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!