Friday, 2017-04-07

*** david-lyle has quit IRC00:03
*** wolverineav has quit IRC00:04
*** wolverineav has joined #openstack-horizon00:04
*** wolverineav has quit IRC00:05
*** wolverineav has joined #openstack-horizon00:05
*** wolverin_ has joined #openstack-horizon00:06
*** wolverineav has quit IRC00:06
*** david-lyle has joined #openstack-horizon00:07
*** ChanServ sets mode: +o david-lyle00:07
*** wolverin_ has quit IRC00:08
*** wolverineav has joined #openstack-horizon00:08
*** wolverineav has quit IRC00:12
*** yingjun has joined #openstack-horizon00:26
*** mtanino has quit IRC00:28
*** jlopezgu_ has quit IRC00:32
*** MasterOfBugs has quit IRC00:34
*** david-lyle has quit IRC00:36
*** zhurong has joined #openstack-horizon00:43
*** dave-mcc_ has joined #openstack-horizon00:57
*** aortega has quit IRC00:58
*** dave-mccowan has quit IRC01:00
*** amotoki has quit IRC01:16
*** lucasxu has joined #openstack-horizon01:17
*** lucasxu has quit IRC01:20
*** Pavo has quit IRC01:22
*** amotoki has joined #openstack-horizon01:22
*** lucasxu has joined #openstack-horizon01:30
*** shuyingya has joined #openstack-horizon01:36
*** dave-mccowan has joined #openstack-horizon01:37
*** mtanino has joined #openstack-horizon01:37
*** dave-mcc_ has quit IRC01:39
adriantr1chardj0n3s: Is chrome denying cookies over a given size from horizon a known problem?02:03
openstackgerritwei.ying proposed openstack/horizon master: Fix edit consistency group form error  https://review.openstack.org/45423802:03
adriant(we're currently running liberty horizon and about to upgrade to ocata)02:03
adriantSet-Cookie header is ignored in response from url: .../auth/login/. Cookie length should be less then or equal to 4096 characters.02:10
adriantthe only change is that we recently added a third region to our cloud02:10
adriantno issues in firefox as firefox is less picky about the cookie size02:11
*** vishwanathj has joined #openstack-horizon02:17
*** jrist has quit IRC02:19
*** vishwanathj has quit IRC02:19
*** vishwanathj has joined #openstack-horizon02:20
*** jrist has joined #openstack-horizon02:20
*** mtanino_ has joined #openstack-horizon02:26
*** mtanino has quit IRC02:28
r1chardj0n3sadriant: yes, cookie overflow is an issue02:34
r1chardj0n3sadriant: I recommend not using cookie session store *ever*02:34
adriantr1chardj0n3s: crap... yeah I've just found: https://github.com/openstack/horizon/blob/8d5eafc957418e685a1db813433fb46cb8a6c9b5/horizon/middleware/base.py#L9302:35
r1chardj0n3s(I've been agitating to have it removed as the Horizon default for quite some time :/ )02:35
r1chardj0n3shttps://review.openstack.org/#/c/444266/ is the patch to finally do it02:35
adriantr1chardj0n3s: ok... looks like we need to triage that in production quickly02:35
adriantare there good docs on the other session stores?02:35
r1chardj0n3sstandard django session stores02:36
adriantwhich would you suggest file or database?02:36
adriantoh02:36
r1chardj0n3sI suggest whatever works for you :-)02:36
adriantok02:36
r1chardj0n3sthe various stores have various pros and cons02:36
adriantany reason for the overflow?02:37
adriantwhat exactly is being stored in it? Not the full catalog?02:37
r1chardj0n3sadriant: yes, the full catalog02:37
r1chardj0n3sbecause reasons02:37
adriantthats...02:38
adriantstupid02:38
r1chardj0n3swell, it stops us fetching the catalog from keystone for every single request to django02:38
r1chardj0n3sso it's not that stupid02:38
adriantyeah I guess, but the catalog get's huge02:38
adriantthats why PKI was terrible02:38
r1chardj0n3sI could say many things at this point, but the simplest is: son02:38
r1chardj0n3sdon't use cookies to store sessions :-)02:39
adriantyeah02:39
adriant*sigh*02:40
adriantI feel like the catalog is handled terribly across openstack in a lot of ways02:40
r1chardj0n3sadriant: welcome to OpenStack02:41
r1chardj0n3swe try, but it's a big, distributed project :-)02:42
adriantr1chardj0n3s, how does anything other than cookies though work for multi-region mult-master horizon?02:42
r1chardj0n3sadriant: I'm not sure I understand the question02:43
r1chardj0n3s(what's a "multi-master horizon"?)02:43
adriantimagine 3 datacentres, each with a horizon,02:43
adriantthe session is per horizon, but if you somehow magically end up talking to a different horizon because of geoloadbalancing you need to relog02:43
adriantit's not multi-master but...02:44
r1chardj0n3sok, that's out of my comfort zone, but it sounds like you need a shared session store02:44
r1chardj0n3sor don't geoloadbalance if you have an active session02:45
adriantyeah, we plan to use anycast, so techncially that could work02:45
adriantand database sessions could work between the multiple horizon nodes in a given region02:45
adriantr1chardj0n3s: See what I would assume was how it worked was that you'd have a cookie that stored a token, horizon would confirm that, and then locally in memcache or some such store the catalog for you.02:47
adriantthat way if you did change regions you'd have your cookie/token and all horizon would do is validate it, and refetch the catalog one more and store it in memcache02:48
*** amotoki has quit IRC03:00
*** amotoki has joined #openstack-horizon03:19
*** ratailor has joined #openstack-horizon03:33
*** david-lyle has joined #openstack-horizon03:35
*** ChanServ sets mode: +o david-lyle03:35
*** ianychoi has quit IRC03:36
*** amotoki has quit IRC03:37
*** dave-mccowan has quit IRC03:39
*** david-lyle has quit IRC03:42
*** ianychoi has joined #openstack-horizon03:42
*** mtanino_ has quit IRC03:45
*** zhurong has quit IRC03:51
*** ratailor has quit IRC03:53
*** amotoki has joined #openstack-horizon04:00
*** amotoki has quit IRC04:01
*** amotoki has joined #openstack-horizon04:01
*** zhurong has joined #openstack-horizon04:04
*** ratailor has joined #openstack-horizon04:18
*** jamielennox is now known as jamielennox|away04:18
*** udesale has joined #openstack-horizon04:29
*** yamamoto has quit IRC04:30
*** yamamoto has joined #openstack-horizon04:30
*** lucasxu has quit IRC04:33
openstackgerritRichard Jones proposed openstack/horizon master: Copy os-nova-servers from searchlight ui: actions  https://review.openstack.org/45398804:33
openstackgerritRichard Jones proposed openstack/horizon master: Copy os-nova-servers from searchlight ui  https://review.openstack.org/44409504:34
openstackgerritRichard Jones proposed openstack/horizon master: Copy os-nova-servers from searchlight ui: details pages  https://review.openstack.org/45398704:34
*** kzaitsev_mb has joined #openstack-horizon04:36
*** rcernin has joined #openstack-horizon04:48
*** kzaitsev_mb has quit IRC04:49
*** rcernin has quit IRC04:55
*** rcernin has joined #openstack-horizon04:55
*** rcernin is now known as rcernin|wfh04:55
*** yamamoto_ has joined #openstack-horizon05:07
*** yamamoto has quit IRC05:11
*** jprovazn has joined #openstack-horizon05:18
*** yamamoto has joined #openstack-horizon05:20
*** yamamoto_ has quit IRC05:24
*** shu-mutou has joined #openstack-horizon05:35
*** zhurong has quit IRC05:55
*** yamamoto_ has joined #openstack-horizon06:02
openstackgerritOpenStack Proposal Bot proposed openstack/django_openstack_auth master: Updated from global requirements  https://review.openstack.org/45447206:03
openstackgerritOpenStack Proposal Bot proposed openstack/horizon master: Updated from global requirements  https://review.openstack.org/45447906:05
*** yamamoto has quit IRC06:06
openstackgerritOpenStack Proposal Bot proposed openstack/manila-ui master: Updated from global requirements  https://review.openstack.org/45449006:06
*** zhurong has joined #openstack-horizon06:16
robcresswelladriant: By memcache, what did you mean? Memcached?06:17
*** kzaitsev_mb has joined #openstack-horizon06:17
robcresswellCause the usage of "locally" makes me think you meant localstorage06:17
robcresswellRegardless, there are lots of ways to do it. Just depends who wants to rewrite it.06:19
robcresswellCookie based sessions have a big "don't do this" sign stamped all over them.06:19
r1chardj0n3sgood morning robcresswell :-)06:19
*** masco has joined #openstack-horizon06:27
robcresswellGood morning r1chardj0n3s :)06:28
*** kzaitsev_mb has quit IRC06:30
*** yamamoto_ has quit IRC06:30
*** pcaruana has joined #openstack-horizon06:34
*** yamamoto has joined #openstack-horizon06:38
openstackgerritMerged openstack/horizon master: Fix the existence check in DataTable Column  https://review.openstack.org/44980506:45
*** belmoreira has joined #openstack-horizon06:51
openstackgerritOpenStack Proposal Bot proposed openstack/horizon master: Updated from global requirements  https://review.openstack.org/45447906:51
openstackgerritMerged openstack/horizon master: Fix edit consistency group form error  https://review.openstack.org/45423807:00
*** mine0901 has joined #openstack-horizon07:04
openstackgerritOpenStack Proposal Bot proposed openstack/horizon master: Updated from global requirements  https://review.openstack.org/45447907:06
*** tesseract has joined #openstack-horizon07:07
*** jtomasek has quit IRC07:19
*** jtomasek has joined #openstack-horizon07:19
adriantrobcresswell: yeah, it's more just this was deployed a while ago and no one did anything useful with it and just left a default because it worked.07:23
adriantrobcresswell: and sorry yes Memcached07:23
adriantIt's one of those sad cases where no one clearly had ownership of the project, and it just mostly 'worked' until it didn't.07:25
adriantrobcresswell: but yeah we should never have been using the cookies session backend.07:27
*** yamamoto has quit IRC07:31
robcresswelladriant: Yeah, you can use a cache backend like memcached. IMO it would probably be best to use browser localstorage :D But we'd have to rewrite it, when there are more important things to do07:31
*** yamamoto has joined #openstack-horizon07:32
adriantrobcresswell: local storage would be heaps better for horizon nodes in different regions. If I ever have the time I'd offer to help.07:33
adriantbrowser* local storage07:33
adriantas then we dont' need to worry about a user flipping between nodes because of something stupid due to geo load balancing07:34
adriantWe don't need it, yet, but eventually :P07:34
adriantfor now horizon is only in one region, with a failover process.07:34
adriantbut with multiple nodes in one region07:34
*** itxaka has joined #openstack-horizon07:34
adrianthence the need to share a cache between nodes in the same region07:35
*** jpich has joined #openstack-horizon07:37
adriantrobcresswell: you thinking for session storage in the browser local storage, or just some elements? I'd think upstream django would be interest in a session engine that uses browser local over cookies :/07:40
adriantinterested*07:40
robcresswelladriant: We'd just use JS to do it anyway.07:42
robcresswelladriant: In terms of Django, we're swapping the default to local memory anyway, which will be better for everyone. Unless people use it in prod ;)07:42
adriantrobcresswell: it would at least encourage people to look at the options rather than just use the default.07:43
adriantbecause local memory would cause them more issues faster :P07:43
adriantwell, if they had more than one horizon node07:43
adriant"Why do I have to keep logging in all the time!?"07:43
*** DP2109 has joined #openstack-horizon07:50
adriantrobcresswell: any recommendations for MemcachedCache vs PyLibMCCache?07:57
adriantnot really your problem, nor really a horizon question, just curious.07:59
robcresswelladriant: I've only ever used python-memcached and MemcachedCache, but thats just dev work08:01
robcresswelladriant: I'm one of those upstream-only devs, I'm afraid08:01
adriantI've only ever used python-memcached but never in larger multi-server setups, and I'm curious if either is better at sharding and correctly finding/setting keys on larger deplotments.08:01
adriantrobcresswell, yeah... I'm technically 'only a dev' but I find myself doing a lot of ops and deployment work lately :P08:02
robcresswelladriant: Best bet for getting info there would be the #openstack channel or the ops mailer I think08:02
adriantrobcresswell, np, thanks as it is :)08:03
*** jtriley has quit IRC08:05
*** DP2109 has quit IRC08:09
*** yamamoto has quit IRC08:09
openstackgerritMerged openstack/django_openstack_auth master: Updated from global requirements  https://review.openstack.org/45447208:19
*** DP2109 has joined #openstack-horizon08:20
*** jtriley has joined #openstack-horizon08:38
*** zhurong has quit IRC08:41
*** jtriley has quit IRC08:46
*** yamamoto has joined #openstack-horizon08:46
openstackgerritLajos Katona proposed openstack/horizon master: New readonly panel for trunks  https://review.openstack.org/44921708:57
*** yamamoto has quit IRC09:13
*** DP2109 has quit IRC09:14
*** yamamoto has joined #openstack-horizon09:15
openstackgerritLajos Katona proposed openstack/horizon master: WIP Trunks panel: item and batch delete  https://review.openstack.org/45414309:33
openstackgerritwei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID  https://review.openstack.org/45414609:34
*** jtriley has joined #openstack-horizon09:36
*** tosky has joined #openstack-horizon09:37
*** jtriley has quit IRC09:45
*** zhurong has joined #openstack-horizon09:54
*** zhurong has quit IRC09:55
*** DP2109 has joined #openstack-horizon10:08
*** amotoki has quit IRC10:10
openstackgerritOpenStack Proposal Bot proposed openstack/horizon master: Imported Translations from Zanata  https://review.openstack.org/45465510:14
*** aortega has joined #openstack-horizon10:18
*** udesale has quit IRC10:26
*** aortega has quit IRC10:27
*** yingjun has quit IRC10:28
*** tesseract has quit IRC10:30
*** jprovazn has quit IRC10:31
*** ratailor has quit IRC10:31
*** jtriley has joined #openstack-horizon10:35
*** DP2109 has quit IRC10:36
*** dalees has joined #openstack-horizon10:42
*** tesseract has joined #openstack-horizon10:44
*** jtriley has quit IRC10:45
daleesHi all, this change has caused a regression if the identity panel is not registered: https://review.openstack.org/#/c/430176 - should I raise a launchpad bug and then submit the fix to gerrit, or submit with details in commit message?10:45
*** DP2109 has joined #openstack-horizon10:50
openstackgerritMerged openstack/manila-ui master: Updated from global requirements  https://review.openstack.org/45449010:55
openstackgerritDale Smith proposed openstack/horizon master: Fix regression when identity panel is not registered.  https://review.openstack.org/45467110:56
*** shuyingya has quit IRC10:57
*** shuyingya has joined #openstack-horizon10:58
*** jtriley has joined #openstack-horizon11:01
robcresswelldalees: What's the regression?11:01
robcresswellPlease open a bug so we can understand and track it11:01
daleesrobcresswell, if the identity panel is not registered, it will hit the exception and pass but never set dashboard. then the return attempts to use dashboard.11:01
daleesrobcresswell, ok thanks, will do11:02
*** jtriley has quit IRC11:05
*** aortega has joined #openstack-horizon11:07
openstackgerritwei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID  https://review.openstack.org/45414611:11
openstackgerritDale Smith proposed openstack/horizon master: Fix regression when identity panel is not registered.  https://review.openstack.org/45467111:17
*** openstackgerrit has quit IRC11:18
daleesrobcresswell, bug #1680810 created and patch updated11:18
openstackbug 1680810 in OpenStack Dashboard (Horizon) "Error if admin logs in when identity dashboard is not registered." [Undecided,In progress] https://launchpad.net/bugs/1680810 - Assigned to Dale Smith (dalees)11:18
robcresswellthanks11:18
*** pcaruana has quit IRC11:22
*** DP2109 has quit IRC11:27
*** DP2109 has joined #openstack-horizon11:28
*** ratailor has joined #openstack-horizon11:33
*** ratailor has quit IRC11:33
*** itxaka has quit IRC11:49
*** itxaka has joined #openstack-horizon11:49
*** jtomasek_ has joined #openstack-horizon12:12
*** jtomasek_ has quit IRC12:18
*** openstackgerrit has joined #openstack-horizon12:32
openstackgerritwei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID  https://review.openstack.org/45414612:32
*** shuyingya has quit IRC12:34
*** jtomasek has quit IRC12:49
*** jtomasek has joined #openstack-horizon12:49
*** jtomasek has quit IRC12:50
*** jtomasek has joined #openstack-horizon12:50
*** yamamoto has quit IRC13:03
*** catintheroof has joined #openstack-horizon13:03
*** yamamoto has joined #openstack-horizon13:07
*** masco has quit IRC13:18
openstackgerritwei.ying proposed openstack/horizon master: Fix incorrect window title in admin snapshots and volume types  https://review.openstack.org/45471813:21
*** jtriley has joined #openstack-horizon13:25
*** dims has joined #openstack-horizon13:31
dimsrobcresswell : ping about latest python-novaclient13:31
dimsrobcresswell : http://logs.openstack.org/64/454164/2/check/gate-cross-horizon-python27-ubuntu-xenial/de047f5/console.html#_2017-04-07_12_17_05_82283013:31
dimsrobcresswell : (also any other cores!) lot of stuff got yanked out https://review.openstack.org/#/q/status:merged+project:openstack/python-novaclient+branch:master+topic:rm-deprecated-apis13:33
*** DP2109 has quit IRC13:33
*** chlong has joined #openstack-horizon13:33
dimsrequirements team can't bump up python-novaclient to latest release until we get horizon fixed up https://review.openstack.org/#/c/454164/13:34
*** itxaka has quit IRC13:34
*** tosky has quit IRC13:37
*** tosky has joined #openstack-horizon13:38
*** yingjun has joined #openstack-horizon13:39
*** lblanchard has joined #openstack-horizon13:43
*** lblanchard has quit IRC13:44
*** lblanchard has joined #openstack-horizon13:47
*** mtanino has joined #openstack-horizon13:48
*** dave-mccowan has joined #openstack-horizon13:49
*** shuyingya has joined #openstack-horizon13:50
*** zhurong has joined #openstack-horizon13:52
*** zhurong has quit IRC13:53
*** shuyingya has quit IRC13:55
*** udesale has joined #openstack-horizon13:55
*** yingjun has quit IRC13:58
*** ratailor has joined #openstack-horizon14:01
*** amotoki has joined #openstack-horizon14:01
*** yingjun has joined #openstack-horizon14:08
robcresswelldims: ack, I'll take a look14:11
robcresswellSorry was just getting a haircut14:11
*** amotoki has quit IRC14:19
*** amoralej is now known as amoralej|lunch14:20
*** david-lyle has joined #openstack-horizon14:25
*** ChanServ sets mode: +o david-lyle14:25
*** ratailor has quit IRC14:25
*** lucasxu has joined #openstack-horizon14:36
*** udesale has quit IRC14:39
*** udesale has joined #openstack-horizon14:42
*** jeremy_moffitt has quit IRC14:47
*** belmoreira has quit IRC14:47
*** amoralej|lunch is now known as amoralej14:50
*** mattfarina_ is now known as mattfarina14:57
*** rcernin|wfh has quit IRC15:04
*** catintheroof has quit IRC15:06
*** jtriley_ has joined #openstack-horizon15:06
*** catintheroof has joined #openstack-horizon15:06
*** catintheroof has quit IRC15:07
*** jtriley has quit IRC15:09
*** jtriley_ has quit IRC15:11
*** catintheroof has joined #openstack-horizon15:15
*** jtomasek_ has joined #openstack-horizon15:16
*** catintheroof has quit IRC15:16
*** udesale has quit IRC15:16
*** yingjun has quit IRC15:25
*** catintheroof has joined #openstack-horizon15:26
*** catintheroof has quit IRC15:27
robcresswelldims: Okay, this will take me a little while to pull apart. I'm at the tail end of my day here, should be able to get something done on Monday.15:29
dims@robcresswell : ack thanks!15:29
robcresswelldims: Is this blocking any substantial efforts, or is it just the milestone release thats prompted it?15:29
*** amotoki has joined #openstack-horizon15:30
*** jtriley has joined #openstack-horizon15:35
*** dave-johnston has joined #openstack-horizon15:38
*** yingjun has joined #openstack-horizon15:41
*** gary-smith has quit IRC15:45
*** fixedgary has joined #openstack-horizon15:45
*** fixedgary has quit IRC15:46
*** jtomasek_ has quit IRC15:51
*** jpich has quit IRC16:03
openstackgerritJulie Gravel proposed openstack/horizon master: Datepicker should inherit from theme  https://review.openstack.org/31893316:15
*** amotoki has quit IRC16:15
*** lucasxu has quit IRC16:24
*** jtriley has quit IRC16:24
*** ZZelle has joined #openstack-horizon16:27
*** teng has joined #openstack-horizon16:30
*** ediardo has joined #openstack-horizon16:33
ediardoo/16:34
openstackgerritGloria Gu proposed openstack/horizon master: Initalize themable selects only once.  https://review.openstack.org/36067916:38
*** tesseract has quit IRC16:42
*** teng has quit IRC16:42
*** jtriley has joined #openstack-horizon16:43
*** masco has joined #openstack-horizon16:47
*** catintheroof has joined #openstack-horizon16:51
*** jtriley has quit IRC16:55
*** gugl has joined #openstack-horizon16:56
*** catintheroof has quit IRC16:57
*** tosky has quit IRC17:03
*** gary-smith has joined #openstack-horizon17:17
*** yingjun has quit IRC17:18
*** amoralej is now known as amoralej|off17:21
*** lucasxu has joined #openstack-horizon17:24
*** jtomasek_ has joined #openstack-horizon17:35
*** jtomasek_ has quit IRC17:40
*** jeremy_moffitt has joined #openstack-horizon17:43
openstackgerritJulie Gravel proposed openstack/horizon master: Theme Preview Page should include datepicker.  https://review.openstack.org/31897017:44
*** chlong_ has joined #openstack-horizon17:46
*** wolverineav has joined #openstack-horizon17:49
*** teng has joined #openstack-horizon17:52
*** jtriley has joined #openstack-horizon18:00
*** mvk has quit IRC18:08
*** jtriley has quit IRC18:11
*** kzaitsev_mb has joined #openstack-horizon18:14
*** jtriley has joined #openstack-horizon18:14
*** Pavo has joined #openstack-horizon18:14
*** Pavo has quit IRC18:17
*** masco has quit IRC18:19
*** Pavo has joined #openstack-horizon18:19
*** dave-johnston has quit IRC18:26
*** teng has quit IRC18:28
*** Pavo has quit IRC18:35
*** MasterOfBugs has joined #openstack-horizon18:39
*** jtomasek_ has joined #openstack-horizon18:53
*** wolverineav has quit IRC18:56
*** wolverineav has joined #openstack-horizon18:56
*** ying_zuo has joined #openstack-horizon18:57
*** wolverineav has quit IRC19:04
*** mine0901 has quit IRC19:07
*** jtomasek_ has quit IRC19:12
*** openstackgerrit has quit IRC19:19
*** teng has joined #openstack-horizon19:21
*** teng has quit IRC19:21
*** chlong_ has quit IRC19:37
*** chlong has quit IRC19:37
*** jtomasek_ has joined #openstack-horizon19:42
*** chlong has joined #openstack-horizon19:42
*** jtomasek_ has quit IRC19:46
*** ying_zuo has quit IRC19:48
*** ying_zuo has joined #openstack-horizon20:01
*** MasterOfBugs has quit IRC20:10
*** jeremy_moffitt has quit IRC20:11
*** kzaitsev_mb has quit IRC20:12
*** lucasxu has quit IRC20:17
*** aortega has quit IRC20:19
*** jtomasek_ has joined #openstack-horizon20:23
*** jeremy_moffitt has joined #openstack-horizon20:24
*** kzaitsev_mb has joined #openstack-horizon20:33
*** aortega has joined #openstack-horizon20:48
*** mvk has joined #openstack-horizon21:04
*** jtriley has quit IRC21:07
*** lblanchard has quit IRC21:08
*** chlong has quit IRC21:08
*** kzaitsev_mb has quit IRC21:19
*** kzaitsev_mb has joined #openstack-horizon21:25
*** amoralej|off has quit IRC21:55
*** Pavo has joined #openstack-horizon22:11
*** mtanino has quit IRC22:20
*** jtomasek_ has quit IRC22:24
*** ZZelle has quit IRC22:25
*** wolverineav has joined #openstack-horizon22:42
*** wolverineav has quit IRC22:42
*** wolverineav has joined #openstack-horizon22:42
*** shuyingya has joined #openstack-horizon22:47
*** shuyingya has quit IRC22:51
*** openstackgerrit has joined #openstack-horizon22:59
openstackgerritwei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID  https://review.openstack.org/45414622:59
*** gugl_ has joined #openstack-horizon23:19
*** gugl_ has quit IRC23:20
openstackgerritwei.ying proposed openstack/horizon master: Fix remove consistency group volumes form exception  https://review.openstack.org/45492123:45
openstackgerritwei.ying proposed openstack/horizon master: Remove consistency group volumes form execute exception  https://review.openstack.org/45492123:49

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