Tuesday, 2017-11-07

*** salv-orlando has joined #openstack-oslo00:32
*** salv-orlando has quit IRC00:36
openstackgerritOpenStack Proposal Bot proposed openstack/pycadf master: Updated from global requirements  https://review.openstack.org/47013700:40
*** kmalloc has quit IRC00:53
*** ihrachys has quit IRC01:10
*** ihrachys has joined #openstack-oslo01:10
*** dave-mccowan has quit IRC01:24
*** salv-orlando has joined #openstack-oslo01:32
*** salv-orlando has quit IRC01:38
*** sdague has quit IRC02:17
*** salv-orlando has joined #openstack-oslo02:33
*** salv-orlando has quit IRC02:38
*** openstack has joined #openstack-oslo02:43
*** ChanServ sets mode: +o openstack02:43
*** links has joined #openstack-oslo02:52
*** AlexeyAbashkin has joined #openstack-oslo03:01
*** AlexeyAbashkin has quit IRC03:05
*** ihrachys has quit IRC03:49
*** aselius has quit IRC04:21
*** nicolasbock has quit IRC04:23
*** lpetrut has joined #openstack-oslo04:33
*** salv-orlando has joined #openstack-oslo04:35
*** salv-orlando has quit IRC04:40
*** yamamoto has joined #openstack-oslo04:47
openstackgerritStephen Finucane proposed openstack-dev/pbr master: Deprecate testr and nose integration  https://review.openstack.org/51822404:59
*** lpetrut has quit IRC05:23
*** lpetrut has joined #openstack-oslo05:28
*** salv-orlando has joined #openstack-oslo05:36
*** salv-orlando has quit IRC05:40
*** lpetrut has quit IRC05:44
*** namnh has joined #openstack-oslo06:18
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Don't output auth_token for logging  https://review.openstack.org/51824406:31
jaosoriorTengu: ^^06:31
Tengu+2 (can't do… so +1 only ;))06:32
jaosoriorhaha thanks06:32
jaosoriorgonna try to add some tests06:32
jaosorioroh, there were tests already06:33
jaosoriorgreat06:33
*** salv-orlando has joined #openstack-oslo06:35
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Don't output auth_token for logging  https://review.openstack.org/51824406:36
jaosoriorTengu: updated ^^06:37
Tengu:D06:37
Tenguah, and a release note as well now. cool06:37
jaosoriorI need to add one for oslo.log too06:38
Tenguyup.06:43
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.log master: Add release note for use_json option  https://review.openstack.org/51824706:45
jaosoriorTengu: ^^06:45
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.log master: Use retrieved context instead of entry in the record's 'extra'  https://review.openstack.org/51789406:47
openstackgerritxhzhf proposed openstack/oslo.service master: change periodic_task to catch all exceptions including BaseException  https://review.openstack.org/51824906:50
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.log master: Add release note for use_json option  https://review.openstack.org/51824706:50
jaosoriordhellmann: thanks for the quick review!06:51
Tengujaosorior: \o/06:53
Tengujaosorior: although I doubt those can be merged in stable/pike?06:54
jaosoriorTengu: I don't think so :/ specially not the auth_token one, since, as dhellmann said, it's sort of an API-breaking change.06:55
Tenguyup.06:55
Tengua pity we can't just change the content to the actual id, instead of the auth-token header content :(06:55
Tengujaosorior: hmmm... and what about hasing the auth_token? that way, still OK, but as it's hashed, can't go back. a sha256 for example, in order to avoid easy collisions.06:59
Tengujaosorior: that way we'll be able to still try to detect session take-over, while avoiding to provide the material to do the take over.06:59
Tengushould have thought about that before you submit the review, sorry.07:00
jaosoriorTengu: that's an option. But what about the performance penalty?07:01
Tenguhashing isn't that heavy compared to the other actions done.07:01
Tengumaybe sha2 is a bit overkill though07:02
Tenguwe might even keep md5 - logs aren't supposed to be seen by non-authorized people, right?07:02
Tengumd5 is really fast.07:02
jaosorioruhm, that might be a good idea actually07:02
Tengualthough it's a poor hash algo, but might be enough in order to avoid plain stupid leak.07:02
Tenguor sha107:03
* Tengu doesn't like md507:03
jaosoriorlol who does07:03
Tengubut as md5 is still used in order to checksum the images in glance… ;)07:03
jaosorior:(07:03
Tengubalance between speed and actual security.07:03
jaosoriorwell, with the information we currently have from the context, one could just disable the user whose token has been compromised.07:04
Tengu1- logs aren't supposed to be accessed by unauthorized ppl   2- hashing will allow to copy-paste logs to some public pastebin   3- md5 is poor, BUT we might want to add some garbage in the original string in order to salt it.07:04
Tengumeaning: md5 might be enough if we just add some salt. that's pretty fast and efficient.07:05
Tenguwhat do you think?07:05
Tengualthough it will be fixed, static salt.07:06
Tenguelse we won't be able to follow the auth_token in the logs, of course.07:06
jaosoriorTengu: I'm just thinking, how we would actually use it07:06
jaosoriorlets say you suspect that a token has been compromised07:07
jaosorioryou look at the logs07:07
jaosoriorfind the hash07:07
Tengujaosorior: instead of filtering by user, we might actually want to filter by auth-token, so that we can ensure it's used by the same user all the time07:07
jaosoriorthat's a good point07:07
Tenguwell, best way to ensure nothing is compromised.07:08
Tengumeaning a hashed token is enough. and, as said, md5 might be OK in that use-case, because log access should be reserved to specific power users.07:08
Tenguin addition, that will allow people to debug possible right/policies issues following a token ID instead of a user.07:09
jaosoriorI'm sold07:09
jaosoriorwhat do you think is the best way07:10
jaosoriorto add always? or to make it configurable?07:10
Tengubest way: configurable07:10
Tengueither set it to md5, or plain (big fat warning) or drop it07:10
Tengua warning for md5 might as well be issued in the doc, as it's not a good hash algo.07:11
Tengubut, as said: threadof between sec and speed. logs must flow without huge impact on the systems.07:11
Tengujaosorior: we might want to allow ppl to add static salt for the hash? that way, we MIGHT get a sligtly better security while still using a poor hash algo.07:12
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.log master: Add release note for use_json option  https://review.openstack.org/51824707:12
jaosoriorTengu: ok, now the next step is to figure out where to import these algos from07:13
jaosoriorTengu: it has to be a library that's already in the openstack requirements07:13
Tengufrom digest import md507:13
Tenguit's a standard python lib07:13
jaosorioris it already?07:13
jaosorioroh07:14
jaosoriorlol07:14
Tenguand it must be, because glance uses md5 :)07:14
jaosoriorthought there was an oslo library for those algos07:14
Tenguah. hmm.07:14
Tengudon't think so.07:14
Tengushouldn't be the case for code sake.07:14
Tenguwe might want to check in glance.07:15
jaosoriorlets do that07:15
Tenguhmmm.07:16
Tenguthey use another thing than plain digest.07:16
Tenguhttps://github.com/openstack/glance/blob/0fb096ffcd7e51e11fccc7c28eddc18fa59185f4/glance/common/utils.py#L3607:16
Tenguok, openssl module.07:16
Tenguthat's kind of OK in that case because they do other things with crypto module.07:16
jaosoriorTengu: and keystone uses passlib for their hashes07:17
Tenguah.07:17
Tenguhmm.07:17
Tenguwait07:17
Tenguok. https://passlib.readthedocs.io/en/stable/lib/passlib.crypto.digest.html07:17
Tenguand in keystone context, it's also good to use passlib due to the pkcs#5 support.07:18
Tengujaosorior: in oslo case, I think we can stick with the standard digest lib.07:18
jaosoriorright07:19
jaosoriorTengu: does it have any py2X/py3X issues?07:19
Tenguah, sorry, hashlib in fact.07:19
Tenguhttps://docs.python.org/2/library/hashlib.html#module-hashlib07:19
Tenguyou have the usage in there as well.07:19
Tengujaosorior: well, if we're using md5, I donc think issues will be in hashlib :D07:19
*** spectr has quit IRC07:22
Tengujaosorior: the good point with the hashing way: that would allow us to backport it in stable/pike without break any API :).07:23
* Tengu loves that fact07:23
*** zigo has quit IRC07:24
jaosoriordhellmann: what do you think? ^^07:26
dhellmannjaosorior, Tengu : what's the goal here?07:27
dhellmannto avoid showing the auth_token in logs?07:27
Tengudhellmann: yep07:27
dhellmannis it always showing up? or just with JSON output?07:27
Tenguwhile still showing something that can be used in order to follow a tken07:27
*** zigo has joined #openstack-oslo07:28
jaosoriordhellmann: just the JSON output as far as I could tell.07:29
TenguI think the plain output displays an object pointer.07:29
jaosoriordhellmann: it's not showing up at the moment, cause currently it doesn't show any context at all. This patch https://review.openstack.org/#/c/517894/ is needed.07:29
jaosoriorTengu: it doesn't show an object pointer, it shows the actual string for the token.07:30
Tengujaosorior: in the plain logs?07:31
jaosoriordhellmann: the patch that actually adds the context to the json output depends-on the oslo.context patch, therefore, it won't merge until we have a proper solution.07:31
jaosoriorTengu: yes.07:31
jaosoriordhellmann: there are two options right now. One is the current proposal which removes the auth_token entirely from the output. The second one, which I'm now leaning more towards, is to hash the auth_token, which would allow for b etter log filtering.07:32
jaosoriorand to identify the case of a stolen token07:32
Tenguah, "token" is the name in the log apparently.07:33
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Don't output auth_token for logging  https://review.openstack.org/51824407:35
jaosoriorTengu: what about this? ^^07:35
Tengu2s, cleaning up my tabs :D07:36
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Don't output auth_token for logging  https://review.openstack.org/51824407:36
jaosoriorTengu: oh, had a leftover. updated ^^07:36
Tenguok so you go for the sha1. should be fast enough while still providing better security than md5.07:37
jaosoriorTengu: yeah, I considered what you said and thought it was a better idea.07:37
jaosoriorTengu: what do you think?07:38
Tenguso by default you set the get_hash_token to False - that will be an API breakage.07:38
jaosoriorTengu: so, you think I should always output the hash?07:39
Tenguon one hand yes for the sake of API stability, on the other hand we might want to get by default a fast enough logging process.07:40
jaosoriorhaha so you're 50/50 on this07:40
Tenguhard to tell more.07:40
Tenguyep.07:40
Tenguboth are valid.07:40
jaosoriordhellmann: what do you suggest?07:40
Tengumight need some third advice.07:41
*** hoonetorg has quit IRC07:44
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Don't output auth_token for logging  https://review.openstack.org/51824407:44
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a null value or a hash instead of the auth_token  https://review.openstack.org/51824407:49
jaosoriorTengu: seems we have utf8 issues.07:52
Tenguwhere?07:53
jaosoriorhashlib requires bytes, not utf807:54
Tengujaosorior: can't be the sha1 output as it's a hexadecimal output, no non-ASCII char in that.07:54
Tenguah07:55
Tenguhmmm.07:55
Tenguso the header is a u'string' ?07:55
jaosoriorand we don't necessarily know what auth_token's format is07:55
Tengujaosorior: can you test locally the patch? if so, care to print some `type(self.auth_token)' ?07:56
*** hoonetorg has joined #openstack-oslo07:57
Tengujaosorior: ah, there's some linting issue in the code according to pep8.08:01
Tengu./oslo_context/context.py:32:1: H306  imports not in alphabetical order (itertools, hashlib)08:01
Tenguh comes before i :D. running tox in order to check what's going on.08:02
*** samueldmq has quit IRC08:03
jaosorioryep, fixed that one now08:04
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a null value or a hash instead of the auth_token  https://review.openstack.org/51824408:04
jaosoriorTengu: this is what I ahve right now ^^08:04
Tengulemme fetch it again then08:04
jaosoriorTengu: missing detecting if auth_token is utf8, and if it is, convert it to bytes08:05
*** samueldmq has joined #openstack-oslo08:05
*** pcaruana has joined #openstack-oslo08:06
Tenguhmm ok. well, unale to run tox due to some issues with requirements. probably missing some dev lib for python :/.08:08
Tengu*unable08:08
Tengujaosorior: hmm, your latest patch just puts the salt in byte.08:08
jaosoriorTengu: it should also have fixe the import issue08:10
Tenguyup, indeed08:10
jaosoriorTengu: but yeah, setting the salt as bytes works with both python 2 and 3.08:10
jaosorioronly thing missing is handling the auth_token08:10
Tenguweird thing: it should be a simple string.08:11
*** AlexeyAbashkin has joined #openstack-oslo08:12
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a null value or a hash instead of the auth_token  https://review.openstack.org/51824408:19
jaosoriorTengu: what about this? ^^08:19
Tengu2s08:21
Tenguah, should be good like that. creating a function would also allow to use that hashed output in other places.08:21
TenguMight be a non-private one maybe?08:22
jaosoriorTengu: lol, so apparently there was an oslo.utils function08:22
Tenguoh ??08:22
*** tesseract has joined #openstack-oslo08:23
Tengujaosorior: which one are you thinking about?08:23
jaosoriorTengu: check the latest comment in the patch08:24
Tenguah, I just saw that one.08:24
Tengu(the mask_password)08:24
Tengugni… ?!08:25
jaosoriorTengu: they even have a mask_dict_password08:25
TenguI don't think this does what we want.08:25
Tenguapparently it replace all passwords with the same string, i.e. "***" by default.08:26
Tenguso nope, this isn't the one we want.08:26
jaosoriorit doesn't08:26
*** AlexeyAbashkin has quit IRC08:27
*** AlexeyAbashkin has joined #openstack-oslo08:27
Tenguit searches in string in order to replace, in the strings, the password.08:28
Tengunot really what we want :/08:28
jaosoriorTengu: you're right. Answered in the review08:28
Tengujust saw that. I was about to tell more or less the same :)08:29
jaosoriorif you have a better explanation it would be worth adding it there.08:30
*** ralonsoh has joined #openstack-oslo08:33
TenguI can do that if you want :)08:33
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a null value or a hash instead of the auth_token  https://review.openstack.org/51824408:34
jaosoriorTengu: ok, that patch is in a better state now :D ^^08:34
jaosoriorTengu: now the only thing we need is more opinions on whether we should hash by default or not.08:34
Tengu:)08:34
TenguI add some more comment on Mehdi proposal.08:34
*** e0ne has joined #openstack-oslo08:37
Tengujaosorior: if this one passes through the CI without issue, it's pretty call. Just one concern though: how do we set the get_hashed_token and salt?08:38
jaosoriorTengu: we would need to enable those via a configuration optino is oslo.log08:39
Tenguok08:39
Tenguso some more patching are needed I guess?08:39
jaosorioryes'08:39
Tenguand more CI :D08:39
jaosoriorhaha indeed08:39
*** lpetrut has joined #openstack-oslo08:39
Tenguo___O speaking about it… my patch apparently goes through the gate a second time (didn't do anything), and its ETA is over 19h08:40
jaosoriorTengu: let me check it out08:41
*** lpetrut has quit IRC08:44
*** lpetrut has joined #openstack-oslo08:44
*** salv-orlando has quit IRC08:45
*** salv-orlando has joined #openstack-oslo08:46
*** salv-orlando has quit IRC08:51
*** pooja-jadhav is now known as pooja_jadhav08:55
*** namnh has quit IRC08:55
*** yamamoto has quit IRC09:02
*** yamamoto has joined #openstack-oslo09:05
*** yamamoto has quit IRC09:09
*** lucas-afk is now known as lucasagomes09:17
*** salv-orlando has joined #openstack-oslo09:23
*** yamamoto has joined #openstack-oslo09:46
jaosoriorTengu: oh, well, seems we have an answer09:48
Tenguhmm?09:48
jaosoriorTengu: check the last comments to the oslo.context patch09:49
Tenguah, yes, wait, trying to get my cluster back first ^^'09:50
Tengujaosorior: I'll add some comment for Mehdi. While the None part is correct in fact - you might want to use the mask_password in that context - the hash one is still valid imho.09:57
sileht/09:57
*** chhavi has joined #openstack-oslo09:57
chhavihttps://bugs.launchpad.net/cinder/+bug/169277510:07
openstackLaunchpad bug 1692775 in Cinder "Cinder-backup service reports as down during backup of large volumes" [Undecided,Fix released] - Assigned to Gorka Eguileor (gorka)10:07
jaosoriorTengu:  I meant the laaaast10:07
chhavithis issue is still seen in the latest code10:07
jaosoriorTengu: oh wait, hadn't seen that one.10:07
*** vipul has quit IRC10:09
chhavitommylikehu: https://bugs.launchpad.net/cinder/+bug/1729044 updated the defect with the details10:10
openstackLaunchpad bug 1729044 in Cinder "cinder backup not releasing the memory after backup create" [Undecided,New]10:11
*** vipul has joined #openstack-oslo10:26
*** yamamoto has quit IRC10:27
*** salv-orlando has quit IRC10:27
*** yamamoto has joined #openstack-oslo10:27
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a null value or a hash instead of the auth_token  https://review.openstack.org/51824410:29
*** vipul has quit IRC10:30
*** yamamoto has quit IRC10:33
*** ianychoi_ has joined #openstack-oslo10:33
Tenguhave to go, jaosorior I'll check that once at home (part-time job: the best one ;))10:34
*** ianychoi has quit IRC10:36
jaosoriorTengu: haha alright, appreciate the help!10:36
*** AlexeyAbashkin has quit IRC10:39
*** vipul has joined #openstack-oslo10:40
*** AlexeyAbashkin has joined #openstack-oslo10:43
*** links has quit IRC10:45
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a null value or a hash instead of the auth_token  https://review.openstack.org/51824410:48
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a null value or a hash instead of the auth_token  https://review.openstack.org/51824410:51
*** sdague has joined #openstack-oslo10:53
jaosoriorsileht, dhellmann: How is the request-id generated?10:54
jaosoriorsileht, dhellmann as far as I've understood, you can use the same token for different requests, and it'll be valid, and it will also have different request-id's10:55
*** links has joined #openstack-oslo10:57
silehtjaosorior, does you patch is for "not leaking auth_token" or "tracking user" ? I'm lost10:58
jaosoriorsileht: it's kind of evolving into both10:58
silehtwell, a change should implement only one thing10:59
sileht"not leaking auth_token" is easy fix10:59
jaosoriorsileht: ok, I'll break up the patch into two. And it'll make discussion easier.10:59
silehtwhile "tracking user" require wide community discustion11:00
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a placeholder instead of the auth_token  https://review.openstack.org/51824411:05
*** pbourke has quit IRC11:07
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Ouput a placeholder instead of the auth_token  https://review.openstack.org/51824411:08
*** pbourke has joined #openstack-oslo11:08
*** yamamoto has joined #openstack-oslo11:12
openstackgerritJuan Antonio Osorio Robles proposed openstack/oslo.context master: Add option to output hashed auth_token  https://review.openstack.org/51829611:14
jaosoriorsileht: done. Thanks for the suggestion.11:14
*** pblaho has quit IRC11:20
*** salv-orlando has joined #openstack-oslo11:27
*** links has quit IRC11:30
*** yamamoto has quit IRC11:31
*** salv-orlando has quit IRC11:32
*** links has joined #openstack-oslo11:43
*** yamamoto has joined #openstack-oslo11:43
*** raildo has joined #openstack-oslo11:55
Tengujaosorior: just added a comment11:56
jaosoriorTengu: I separated the commits to ease the discussion, added you to the other one too11:56
Tengujaosorior: cool, thanks11:58
*** yamamoto has quit IRC11:58
Tengujaosorior: I explained the use-case for the "follow the auth_id" :)11:58
TenguI'll check the other commit(s).11:58
jaosoriorTengu: only two https://review.openstack.org/#/q/topic:dont-leak-auth-token+(status:open+OR+status:merged)11:59
Tenguyup, on them.11:59
TenguOK, so the original one will only output the "***", this mimics the oslo.utils mask_password() function.12:00
Tenguand you added a new separated commit in order to be able to hash the auth_token if admin wants. seems good for me.12:00
jaosoriorright12:01
jaosoriorso, no need to add a dependency on oslo.utils12:01
jaosoriorsince we just needed that one thing12:01
Tenguyup12:01
Tengujaosorior: just to learn: you have one branch and two commits in it, each one creates a new review right?12:02
jaosorioryes12:02
Tengucool12:02
*** nicolasbock has joined #openstack-oslo12:02
*** lucasagomes is now known as lucas-hungry12:04
*** gcb has joined #openstack-oslo12:08
*** pblaho has joined #openstack-oslo12:26
*** salv-orlando has joined #openstack-oslo12:29
*** salv-orlando has quit IRC12:31
*** ansmith has quit IRC12:31
*** salv-orl_ has joined #openstack-oslo12:31
*** yamamoto has joined #openstack-oslo12:34
*** catintheroof has joined #openstack-oslo12:34
*** links has quit IRC12:37
*** salv-orl_ has quit IRC12:40
*** catintheroof has quit IRC12:45
*** samueldmq has quit IRC12:55
*** samueldmq has joined #openstack-oslo12:55
*** gordc has joined #openstack-oslo12:56
*** catintheroof has joined #openstack-oslo12:57
*** lucas-hungry is now known as lucasagomes12:57
*** pcaruana has quit IRC13:22
*** ansmith has joined #openstack-oslo13:42
*** kgiusti has joined #openstack-oslo13:48
*** yamamoto has quit IRC13:56
*** kgiusti has left #openstack-oslo13:58
*** catintheroof has quit IRC14:03
*** catintheroof has joined #openstack-oslo14:10
*** yamamoto has joined #openstack-oslo14:10
*** gordc has quit IRC14:11
*** gordc has joined #openstack-oslo14:15
*** yamamoto has quit IRC14:15
*** spilla has joined #openstack-oslo14:29
*** pcaruana has joined #openstack-oslo14:47
*** janzian has joined #openstack-oslo14:52
*** spectr has joined #openstack-oslo15:01
*** yamamoto has joined #openstack-oslo15:13
*** gcb has quit IRC15:22
*** yamamoto has quit IRC15:26
*** ansmith has quit IRC15:37
*** AlexeyAbashkin has quit IRC15:37
*** kgiusti has joined #openstack-oslo15:38
*** ansmith has joined #openstack-oslo15:49
*** yamamoto has joined #openstack-oslo15:55
*** spectr has quit IRC16:00
*** ihrachys has joined #openstack-oslo16:01
*** chhavi has quit IRC16:03
*** yamamoto has quit IRC16:06
*** lpetrut_ has joined #openstack-oslo16:16
*** nikhil has joined #openstack-oslo16:17
*** lpetrut has quit IRC16:18
*** salv-orlando has joined #openstack-oslo16:20
*** lpetrut_ has quit IRC16:24
*** ianychoi_ has quit IRC16:29
*** yamamoto has joined #openstack-oslo16:35
*** yamamoto has quit IRC16:41
*** lpetrut has joined #openstack-oslo16:51
*** kmalloc has joined #openstack-oslo16:59
*** e0ne has quit IRC17:16
*** lucasagomes is now known as lucas-afk17:18
*** lpetrut has quit IRC17:25
*** tesseract has quit IRC17:30
*** AlexeyAbashkin has joined #openstack-oslo17:31
*** ralonsoh has quit IRC17:33
*** AlexeyAbashkin has quit IRC17:36
*** tesseract has joined #openstack-oslo17:40
*** spilla has quit IRC17:43
*** tesseract has quit IRC17:49
*** AlexeyAbashkin has joined #openstack-oslo18:00
*** AlexeyAbashkin has quit IRC18:04
jaosoriorbnemec: hey, could you check these out https://review.openstack.org/518244 ?18:13
*** nikhil has quit IRC18:26
*** aselius has joined #openstack-oslo18:27
*** e0ne has joined #openstack-oslo18:33
*** spilla has joined #openstack-oslo18:51
*** AlexeyAbashkin has joined #openstack-oslo18:59
*** d0ugal has quit IRC19:01
*** e0ne has quit IRC19:03
*** AlexeyAbashkin has quit IRC19:03
*** dave-mccowan has joined #openstack-oslo19:18
*** dave-mcc_ has joined #openstack-oslo19:22
*** Guest71388 has quit IRC19:23
*** dave-mccowan has quit IRC19:24
*** dansmith has joined #openstack-oslo19:24
*** dansmith is now known as Guest9870619:24
*** Aramis has joined #openstack-oslo19:45
*** eck` is now known as eck`gone19:54
*** e0ne has joined #openstack-oslo19:54
*** eck`gone is now known as eck`19:54
*** kmalloc has quit IRC19:59
*** AlexeyAbashkin has joined #openstack-oslo20:00
*** AlexeyAbashkin has quit IRC20:04
*** e0ne has quit IRC20:09
*** e0ne has joined #openstack-oslo20:09
*** catintheroof has quit IRC20:15
*** e0ne has quit IRC20:27
*** catintheroof has joined #openstack-oslo20:46
*** catintheroof has quit IRC20:51
*** ansmith_ has joined #openstack-oslo20:52
*** harlowja has quit IRC20:52
*** ansmith_ has quit IRC20:52
openstackgerritMerged openstack/oslo.context master: Ouput a placeholder instead of the auth_token  https://review.openstack.org/51824420:54
*** catintheroof has joined #openstack-oslo20:58
*** catintheroof has quit IRC21:02
*** raildo has quit IRC21:10
*** catintheroof has joined #openstack-oslo21:11
*** catintheroof has quit IRC21:15
*** dave-mcc_ has quit IRC21:23
*** kgiusti has left #openstack-oslo21:30
*** ansmith has quit IRC21:37
openstackgerritOndřej Nový proposed openstack/taskflow master: Make the build reproducible  https://review.openstack.org/51839721:52
*** dave-mccowan has joined #openstack-oslo21:55
*** Guest98706 is now known as dansmith21:57
*** chhavi has joined #openstack-oslo22:00
*** chhavi has quit IRC22:04
*** kmalloc has joined #openstack-oslo22:04
*** eck` is now known as eck`gone22:13
*** dave-mccowan has quit IRC22:19
*** ansmith has joined #openstack-oslo22:31
*** spilla has quit IRC22:37
*** harlowja has joined #openstack-oslo22:46
*** gordc has quit IRC22:56
*** salv-orlando has quit IRC22:59
*** salv-orlando has joined #openstack-oslo23:00
*** AlexeyAbashkin has joined #openstack-oslo23:00
*** salv-orlando has quit IRC23:04
*** AlexeyAbashkin has quit IRC23:04
*** prad has joined #openstack-oslo23:10
*** prad has quit IRC23:21
*** d0ugal has joined #openstack-oslo23:39
*** AlexeyAbashkin has joined #openstack-oslo23:59

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