*** david-lyle has quit IRC | 00:03 | |
*** wolverineav has quit IRC | 00:04 | |
*** wolverineav has joined #openstack-horizon | 00:04 | |
*** wolverineav has quit IRC | 00:05 | |
*** wolverineav has joined #openstack-horizon | 00:05 | |
*** wolverin_ has joined #openstack-horizon | 00:06 | |
*** wolverineav has quit IRC | 00:06 | |
*** david-lyle has joined #openstack-horizon | 00:07 | |
*** ChanServ sets mode: +o david-lyle | 00:07 | |
*** wolverin_ has quit IRC | 00:08 | |
*** wolverineav has joined #openstack-horizon | 00:08 | |
*** wolverineav has quit IRC | 00:12 | |
*** yingjun has joined #openstack-horizon | 00:26 | |
*** mtanino has quit IRC | 00:28 | |
*** jlopezgu_ has quit IRC | 00:32 | |
*** MasterOfBugs has quit IRC | 00:34 | |
*** david-lyle has quit IRC | 00:36 | |
*** zhurong has joined #openstack-horizon | 00:43 | |
*** dave-mcc_ has joined #openstack-horizon | 00:57 | |
*** aortega has quit IRC | 00:58 | |
*** dave-mccowan has quit IRC | 01:00 | |
*** amotoki has quit IRC | 01:16 | |
*** lucasxu has joined #openstack-horizon | 01:17 | |
*** lucasxu has quit IRC | 01:20 | |
*** Pavo has quit IRC | 01:22 | |
*** amotoki has joined #openstack-horizon | 01:22 | |
*** lucasxu has joined #openstack-horizon | 01:30 | |
*** shuyingya has joined #openstack-horizon | 01:36 | |
*** dave-mccowan has joined #openstack-horizon | 01:37 | |
*** mtanino has joined #openstack-horizon | 01:37 | |
*** dave-mcc_ has quit IRC | 01:39 | |
adriant | r1chardj0n3s: Is chrome denying cookies over a given size from horizon a known problem? | 02:03 |
---|---|---|
openstackgerrit | wei.ying proposed openstack/horizon master: Fix edit consistency group form error https://review.openstack.org/454238 | 02:03 |
adriant | (we're currently running liberty horizon and about to upgrade to ocata) | 02:03 |
adriant | Set-Cookie header is ignored in response from url: .../auth/login/. Cookie length should be less then or equal to 4096 characters. | 02:10 |
adriant | the only change is that we recently added a third region to our cloud | 02:10 |
adriant | no issues in firefox as firefox is less picky about the cookie size | 02:11 |
*** vishwanathj has joined #openstack-horizon | 02:17 | |
*** jrist has quit IRC | 02:19 | |
*** vishwanathj has quit IRC | 02:19 | |
*** vishwanathj has joined #openstack-horizon | 02:20 | |
*** jrist has joined #openstack-horizon | 02:20 | |
*** mtanino_ has joined #openstack-horizon | 02:26 | |
*** mtanino has quit IRC | 02:28 | |
r1chardj0n3s | adriant: yes, cookie overflow is an issue | 02:34 |
r1chardj0n3s | adriant: I recommend not using cookie session store *ever* | 02:34 |
adriant | r1chardj0n3s: crap... yeah I've just found: https://github.com/openstack/horizon/blob/8d5eafc957418e685a1db813433fb46cb8a6c9b5/horizon/middleware/base.py#L93 | 02:35 |
r1chardj0n3s | (I've been agitating to have it removed as the Horizon default for quite some time :/ ) | 02:35 |
r1chardj0n3s | https://review.openstack.org/#/c/444266/ is the patch to finally do it | 02:35 |
adriant | r1chardj0n3s: ok... looks like we need to triage that in production quickly | 02:35 |
adriant | are there good docs on the other session stores? | 02:35 |
r1chardj0n3s | standard django session stores | 02:36 |
adriant | which would you suggest file or database? | 02:36 |
adriant | oh | 02:36 |
r1chardj0n3s | I suggest whatever works for you :-) | 02:36 |
adriant | ok | 02:36 |
r1chardj0n3s | the various stores have various pros and cons | 02:36 |
adriant | any reason for the overflow? | 02:37 |
adriant | what exactly is being stored in it? Not the full catalog? | 02:37 |
r1chardj0n3s | adriant: yes, the full catalog | 02:37 |
r1chardj0n3s | because reasons | 02:37 |
adriant | thats... | 02:38 |
adriant | stupid | 02:38 |
r1chardj0n3s | well, it stops us fetching the catalog from keystone for every single request to django | 02:38 |
r1chardj0n3s | so it's not that stupid | 02:38 |
adriant | yeah I guess, but the catalog get's huge | 02:38 |
adriant | thats why PKI was terrible | 02:38 |
r1chardj0n3s | I could say many things at this point, but the simplest is: son | 02:38 |
r1chardj0n3s | don't use cookies to store sessions :-) | 02:39 |
adriant | yeah | 02:39 |
adriant | *sigh* | 02:40 |
adriant | I feel like the catalog is handled terribly across openstack in a lot of ways | 02:40 |
r1chardj0n3s | adriant: welcome to OpenStack | 02:41 |
r1chardj0n3s | we try, but it's a big, distributed project :-) | 02:42 |
adriant | r1chardj0n3s, how does anything other than cookies though work for multi-region mult-master horizon? | 02:42 |
r1chardj0n3s | adriant: I'm not sure I understand the question | 02:43 |
r1chardj0n3s | (what's a "multi-master horizon"?) | 02:43 |
adriant | imagine 3 datacentres, each with a horizon, | 02:43 |
adriant | the session is per horizon, but if you somehow magically end up talking to a different horizon because of geoloadbalancing you need to relog | 02:43 |
adriant | it's not multi-master but... | 02:44 |
r1chardj0n3s | ok, that's out of my comfort zone, but it sounds like you need a shared session store | 02:44 |
r1chardj0n3s | or don't geoloadbalance if you have an active session | 02:45 |
adriant | yeah, we plan to use anycast, so techncially that could work | 02:45 |
adriant | and database sessions could work between the multiple horizon nodes in a given region | 02:45 |
adriant | r1chardj0n3s: 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 |
adriant | that 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 memcache | 02:48 |
*** amotoki has quit IRC | 03:00 | |
*** amotoki has joined #openstack-horizon | 03:19 | |
*** ratailor has joined #openstack-horizon | 03:33 | |
*** david-lyle has joined #openstack-horizon | 03:35 | |
*** ChanServ sets mode: +o david-lyle | 03:35 | |
*** ianychoi has quit IRC | 03:36 | |
*** amotoki has quit IRC | 03:37 | |
*** dave-mccowan has quit IRC | 03:39 | |
*** david-lyle has quit IRC | 03:42 | |
*** ianychoi has joined #openstack-horizon | 03:42 | |
*** mtanino_ has quit IRC | 03:45 | |
*** zhurong has quit IRC | 03:51 | |
*** ratailor has quit IRC | 03:53 | |
*** amotoki has joined #openstack-horizon | 04:00 | |
*** amotoki has quit IRC | 04:01 | |
*** amotoki has joined #openstack-horizon | 04:01 | |
*** zhurong has joined #openstack-horizon | 04:04 | |
*** ratailor has joined #openstack-horizon | 04:18 | |
*** jamielennox is now known as jamielennox|away | 04:18 | |
*** udesale has joined #openstack-horizon | 04:29 | |
*** yamamoto has quit IRC | 04:30 | |
*** yamamoto has joined #openstack-horizon | 04:30 | |
*** lucasxu has quit IRC | 04:33 | |
openstackgerrit | Richard Jones proposed openstack/horizon master: Copy os-nova-servers from searchlight ui: actions https://review.openstack.org/453988 | 04:33 |
openstackgerrit | Richard Jones proposed openstack/horizon master: Copy os-nova-servers from searchlight ui https://review.openstack.org/444095 | 04:34 |
openstackgerrit | Richard Jones proposed openstack/horizon master: Copy os-nova-servers from searchlight ui: details pages https://review.openstack.org/453987 | 04:34 |
*** kzaitsev_mb has joined #openstack-horizon | 04:36 | |
*** rcernin has joined #openstack-horizon | 04:48 | |
*** kzaitsev_mb has quit IRC | 04:49 | |
*** rcernin has quit IRC | 04:55 | |
*** rcernin has joined #openstack-horizon | 04:55 | |
*** rcernin is now known as rcernin|wfh | 04:55 | |
*** yamamoto_ has joined #openstack-horizon | 05:07 | |
*** yamamoto has quit IRC | 05:11 | |
*** jprovazn has joined #openstack-horizon | 05:18 | |
*** yamamoto has joined #openstack-horizon | 05:20 | |
*** yamamoto_ has quit IRC | 05:24 | |
*** shu-mutou has joined #openstack-horizon | 05:35 | |
*** zhurong has quit IRC | 05:55 | |
*** yamamoto_ has joined #openstack-horizon | 06:02 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/django_openstack_auth master: Updated from global requirements https://review.openstack.org/454472 | 06:03 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon master: Updated from global requirements https://review.openstack.org/454479 | 06:05 |
*** yamamoto has quit IRC | 06:06 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/manila-ui master: Updated from global requirements https://review.openstack.org/454490 | 06:06 |
*** zhurong has joined #openstack-horizon | 06:16 | |
robcresswell | adriant: By memcache, what did you mean? Memcached? | 06:17 |
*** kzaitsev_mb has joined #openstack-horizon | 06:17 | |
robcresswell | Cause the usage of "locally" makes me think you meant localstorage | 06:17 |
robcresswell | Regardless, there are lots of ways to do it. Just depends who wants to rewrite it. | 06:19 |
robcresswell | Cookie based sessions have a big "don't do this" sign stamped all over them. | 06:19 |
r1chardj0n3s | good morning robcresswell :-) | 06:19 |
*** masco has joined #openstack-horizon | 06:27 | |
robcresswell | Good morning r1chardj0n3s :) | 06:28 |
*** kzaitsev_mb has quit IRC | 06:30 | |
*** yamamoto_ has quit IRC | 06:30 | |
*** pcaruana has joined #openstack-horizon | 06:34 | |
*** yamamoto has joined #openstack-horizon | 06:38 | |
openstackgerrit | Merged openstack/horizon master: Fix the existence check in DataTable Column https://review.openstack.org/449805 | 06:45 |
*** belmoreira has joined #openstack-horizon | 06:51 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon master: Updated from global requirements https://review.openstack.org/454479 | 06:51 |
openstackgerrit | Merged openstack/horizon master: Fix edit consistency group form error https://review.openstack.org/454238 | 07:00 |
*** mine0901 has joined #openstack-horizon | 07:04 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon master: Updated from global requirements https://review.openstack.org/454479 | 07:06 |
*** tesseract has joined #openstack-horizon | 07:07 | |
*** jtomasek has quit IRC | 07:19 | |
*** jtomasek has joined #openstack-horizon | 07:19 | |
adriant | robcresswell: 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 |
adriant | robcresswell: and sorry yes Memcached | 07:23 |
adriant | It'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 |
adriant | robcresswell: but yeah we should never have been using the cookies session backend. | 07:27 |
*** yamamoto has quit IRC | 07:31 | |
robcresswell | adriant: 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 do | 07:31 |
*** yamamoto has joined #openstack-horizon | 07:32 | |
adriant | robcresswell: 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 |
adriant | browser* local storage | 07:33 |
adriant | as then we dont' need to worry about a user flipping between nodes because of something stupid due to geo load balancing | 07:34 |
adriant | We don't need it, yet, but eventually :P | 07:34 |
adriant | for now horizon is only in one region, with a failover process. | 07:34 |
adriant | but with multiple nodes in one region | 07:34 |
*** itxaka has joined #openstack-horizon | 07:34 | |
adriant | hence the need to share a cache between nodes in the same region | 07:35 |
*** jpich has joined #openstack-horizon | 07:37 | |
adriant | robcresswell: 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 |
adriant | interested* | 07:40 |
robcresswell | adriant: We'd just use JS to do it anyway. | 07:42 |
robcresswell | adriant: 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 |
adriant | robcresswell: it would at least encourage people to look at the options rather than just use the default. | 07:43 |
adriant | because local memory would cause them more issues faster :P | 07:43 |
adriant | well, if they had more than one horizon node | 07:43 |
adriant | "Why do I have to keep logging in all the time!?" | 07:43 |
*** DP2109 has joined #openstack-horizon | 07:50 | |
adriant | robcresswell: any recommendations for MemcachedCache vs PyLibMCCache? | 07:57 |
adriant | not really your problem, nor really a horizon question, just curious. | 07:59 |
robcresswell | adriant: I've only ever used python-memcached and MemcachedCache, but thats just dev work | 08:01 |
robcresswell | adriant: I'm one of those upstream-only devs, I'm afraid | 08:01 |
adriant | I'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 |
adriant | robcresswell, yeah... I'm technically 'only a dev' but I find myself doing a lot of ops and deployment work lately :P | 08:02 |
robcresswell | adriant: Best bet for getting info there would be the #openstack channel or the ops mailer I think | 08:02 |
adriant | robcresswell, np, thanks as it is :) | 08:03 |
*** jtriley has quit IRC | 08:05 | |
*** DP2109 has quit IRC | 08:09 | |
*** yamamoto has quit IRC | 08:09 | |
openstackgerrit | Merged openstack/django_openstack_auth master: Updated from global requirements https://review.openstack.org/454472 | 08:19 |
*** DP2109 has joined #openstack-horizon | 08:20 | |
*** jtriley has joined #openstack-horizon | 08:38 | |
*** zhurong has quit IRC | 08:41 | |
*** jtriley has quit IRC | 08:46 | |
*** yamamoto has joined #openstack-horizon | 08:46 | |
openstackgerrit | Lajos Katona proposed openstack/horizon master: New readonly panel for trunks https://review.openstack.org/449217 | 08:57 |
*** yamamoto has quit IRC | 09:13 | |
*** DP2109 has quit IRC | 09:14 | |
*** yamamoto has joined #openstack-horizon | 09:15 | |
openstackgerrit | Lajos Katona proposed openstack/horizon master: WIP Trunks panel: item and batch delete https://review.openstack.org/454143 | 09:33 |
openstackgerrit | wei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID https://review.openstack.org/454146 | 09:34 |
*** jtriley has joined #openstack-horizon | 09:36 | |
*** tosky has joined #openstack-horizon | 09:37 | |
*** jtriley has quit IRC | 09:45 | |
*** zhurong has joined #openstack-horizon | 09:54 | |
*** zhurong has quit IRC | 09:55 | |
*** DP2109 has joined #openstack-horizon | 10:08 | |
*** amotoki has quit IRC | 10:10 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon master: Imported Translations from Zanata https://review.openstack.org/454655 | 10:14 |
*** aortega has joined #openstack-horizon | 10:18 | |
*** udesale has quit IRC | 10:26 | |
*** aortega has quit IRC | 10:27 | |
*** yingjun has quit IRC | 10:28 | |
*** tesseract has quit IRC | 10:30 | |
*** jprovazn has quit IRC | 10:31 | |
*** ratailor has quit IRC | 10:31 | |
*** jtriley has joined #openstack-horizon | 10:35 | |
*** DP2109 has quit IRC | 10:36 | |
*** dalees has joined #openstack-horizon | 10:42 | |
*** tesseract has joined #openstack-horizon | 10:44 | |
*** jtriley has quit IRC | 10:45 | |
dalees | Hi 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-horizon | 10:50 | |
openstackgerrit | Merged openstack/manila-ui master: Updated from global requirements https://review.openstack.org/454490 | 10:55 |
openstackgerrit | Dale Smith proposed openstack/horizon master: Fix regression when identity panel is not registered. https://review.openstack.org/454671 | 10:56 |
*** shuyingya has quit IRC | 10:57 | |
*** shuyingya has joined #openstack-horizon | 10:58 | |
*** jtriley has joined #openstack-horizon | 11:01 | |
robcresswell | dalees: What's the regression? | 11:01 |
robcresswell | Please open a bug so we can understand and track it | 11:01 |
dalees | robcresswell, 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 |
dalees | robcresswell, ok thanks, will do | 11:02 |
*** jtriley has quit IRC | 11:05 | |
*** aortega has joined #openstack-horizon | 11:07 | |
openstackgerrit | wei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID https://review.openstack.org/454146 | 11:11 |
openstackgerrit | Dale Smith proposed openstack/horizon master: Fix regression when identity panel is not registered. https://review.openstack.org/454671 | 11:17 |
*** openstackgerrit has quit IRC | 11:18 | |
dalees | robcresswell, bug #1680810 created and patch updated | 11:18 |
openstack | bug 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 |
robcresswell | thanks | 11:18 |
*** pcaruana has quit IRC | 11:22 | |
*** DP2109 has quit IRC | 11:27 | |
*** DP2109 has joined #openstack-horizon | 11:28 | |
*** ratailor has joined #openstack-horizon | 11:33 | |
*** ratailor has quit IRC | 11:33 | |
*** itxaka has quit IRC | 11:49 | |
*** itxaka has joined #openstack-horizon | 11:49 | |
*** jtomasek_ has joined #openstack-horizon | 12:12 | |
*** jtomasek_ has quit IRC | 12:18 | |
*** openstackgerrit has joined #openstack-horizon | 12:32 | |
openstackgerrit | wei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID https://review.openstack.org/454146 | 12:32 |
*** shuyingya has quit IRC | 12:34 | |
*** jtomasek has quit IRC | 12:49 | |
*** jtomasek has joined #openstack-horizon | 12:49 | |
*** jtomasek has quit IRC | 12:50 | |
*** jtomasek has joined #openstack-horizon | 12:50 | |
*** yamamoto has quit IRC | 13:03 | |
*** catintheroof has joined #openstack-horizon | 13:03 | |
*** yamamoto has joined #openstack-horizon | 13:07 | |
*** masco has quit IRC | 13:18 | |
openstackgerrit | wei.ying proposed openstack/horizon master: Fix incorrect window title in admin snapshots and volume types https://review.openstack.org/454718 | 13:21 |
*** jtriley has joined #openstack-horizon | 13:25 | |
*** dims has joined #openstack-horizon | 13:31 | |
dims | robcresswell : ping about latest python-novaclient | 13:31 |
dims | robcresswell : http://logs.openstack.org/64/454164/2/check/gate-cross-horizon-python27-ubuntu-xenial/de047f5/console.html#_2017-04-07_12_17_05_822830 | 13:31 |
dims | robcresswell : (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-apis | 13:33 |
*** DP2109 has quit IRC | 13:33 | |
*** chlong has joined #openstack-horizon | 13:33 | |
dims | requirements 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 IRC | 13:34 | |
*** tosky has quit IRC | 13:37 | |
*** tosky has joined #openstack-horizon | 13:38 | |
*** yingjun has joined #openstack-horizon | 13:39 | |
*** lblanchard has joined #openstack-horizon | 13:43 | |
*** lblanchard has quit IRC | 13:44 | |
*** lblanchard has joined #openstack-horizon | 13:47 | |
*** mtanino has joined #openstack-horizon | 13:48 | |
*** dave-mccowan has joined #openstack-horizon | 13:49 | |
*** shuyingya has joined #openstack-horizon | 13:50 | |
*** zhurong has joined #openstack-horizon | 13:52 | |
*** zhurong has quit IRC | 13:53 | |
*** shuyingya has quit IRC | 13:55 | |
*** udesale has joined #openstack-horizon | 13:55 | |
*** yingjun has quit IRC | 13:58 | |
*** ratailor has joined #openstack-horizon | 14:01 | |
*** amotoki has joined #openstack-horizon | 14:01 | |
*** yingjun has joined #openstack-horizon | 14:08 | |
robcresswell | dims: ack, I'll take a look | 14:11 |
robcresswell | Sorry was just getting a haircut | 14:11 |
*** amotoki has quit IRC | 14:19 | |
*** amoralej is now known as amoralej|lunch | 14:20 | |
*** david-lyle has joined #openstack-horizon | 14:25 | |
*** ChanServ sets mode: +o david-lyle | 14:25 | |
*** ratailor has quit IRC | 14:25 | |
*** lucasxu has joined #openstack-horizon | 14:36 | |
*** udesale has quit IRC | 14:39 | |
*** udesale has joined #openstack-horizon | 14:42 | |
*** jeremy_moffitt has quit IRC | 14:47 | |
*** belmoreira has quit IRC | 14:47 | |
*** amoralej|lunch is now known as amoralej | 14:50 | |
*** mattfarina_ is now known as mattfarina | 14:57 | |
*** rcernin|wfh has quit IRC | 15:04 | |
*** catintheroof has quit IRC | 15:06 | |
*** jtriley_ has joined #openstack-horizon | 15:06 | |
*** catintheroof has joined #openstack-horizon | 15:06 | |
*** catintheroof has quit IRC | 15:07 | |
*** jtriley has quit IRC | 15:09 | |
*** jtriley_ has quit IRC | 15:11 | |
*** catintheroof has joined #openstack-horizon | 15:15 | |
*** jtomasek_ has joined #openstack-horizon | 15:16 | |
*** catintheroof has quit IRC | 15:16 | |
*** udesale has quit IRC | 15:16 | |
*** yingjun has quit IRC | 15:25 | |
*** catintheroof has joined #openstack-horizon | 15:26 | |
*** catintheroof has quit IRC | 15:27 | |
robcresswell | dims: 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 |
robcresswell | dims: Is this blocking any substantial efforts, or is it just the milestone release thats prompted it? | 15:29 |
*** amotoki has joined #openstack-horizon | 15:30 | |
*** jtriley has joined #openstack-horizon | 15:35 | |
*** dave-johnston has joined #openstack-horizon | 15:38 | |
*** yingjun has joined #openstack-horizon | 15:41 | |
*** gary-smith has quit IRC | 15:45 | |
*** fixedgary has joined #openstack-horizon | 15:45 | |
*** fixedgary has quit IRC | 15:46 | |
*** jtomasek_ has quit IRC | 15:51 | |
*** jpich has quit IRC | 16:03 | |
openstackgerrit | Julie Gravel proposed openstack/horizon master: Datepicker should inherit from theme https://review.openstack.org/318933 | 16:15 |
*** amotoki has quit IRC | 16:15 | |
*** lucasxu has quit IRC | 16:24 | |
*** jtriley has quit IRC | 16:24 | |
*** ZZelle has joined #openstack-horizon | 16:27 | |
*** teng has joined #openstack-horizon | 16:30 | |
*** ediardo has joined #openstack-horizon | 16:33 | |
ediardo | o/ | 16:34 |
openstackgerrit | Gloria Gu proposed openstack/horizon master: Initalize themable selects only once. https://review.openstack.org/360679 | 16:38 |
*** tesseract has quit IRC | 16:42 | |
*** teng has quit IRC | 16:42 | |
*** jtriley has joined #openstack-horizon | 16:43 | |
*** masco has joined #openstack-horizon | 16:47 | |
*** catintheroof has joined #openstack-horizon | 16:51 | |
*** jtriley has quit IRC | 16:55 | |
*** gugl has joined #openstack-horizon | 16:56 | |
*** catintheroof has quit IRC | 16:57 | |
*** tosky has quit IRC | 17:03 | |
*** gary-smith has joined #openstack-horizon | 17:17 | |
*** yingjun has quit IRC | 17:18 | |
*** amoralej is now known as amoralej|off | 17:21 | |
*** lucasxu has joined #openstack-horizon | 17:24 | |
*** jtomasek_ has joined #openstack-horizon | 17:35 | |
*** jtomasek_ has quit IRC | 17:40 | |
*** jeremy_moffitt has joined #openstack-horizon | 17:43 | |
openstackgerrit | Julie Gravel proposed openstack/horizon master: Theme Preview Page should include datepicker. https://review.openstack.org/318970 | 17:44 |
*** chlong_ has joined #openstack-horizon | 17:46 | |
*** wolverineav has joined #openstack-horizon | 17:49 | |
*** teng has joined #openstack-horizon | 17:52 | |
*** jtriley has joined #openstack-horizon | 18:00 | |
*** mvk has quit IRC | 18:08 | |
*** jtriley has quit IRC | 18:11 | |
*** kzaitsev_mb has joined #openstack-horizon | 18:14 | |
*** jtriley has joined #openstack-horizon | 18:14 | |
*** Pavo has joined #openstack-horizon | 18:14 | |
*** Pavo has quit IRC | 18:17 | |
*** masco has quit IRC | 18:19 | |
*** Pavo has joined #openstack-horizon | 18:19 | |
*** dave-johnston has quit IRC | 18:26 | |
*** teng has quit IRC | 18:28 | |
*** Pavo has quit IRC | 18:35 | |
*** MasterOfBugs has joined #openstack-horizon | 18:39 | |
*** jtomasek_ has joined #openstack-horizon | 18:53 | |
*** wolverineav has quit IRC | 18:56 | |
*** wolverineav has joined #openstack-horizon | 18:56 | |
*** ying_zuo has joined #openstack-horizon | 18:57 | |
*** wolverineav has quit IRC | 19:04 | |
*** mine0901 has quit IRC | 19:07 | |
*** jtomasek_ has quit IRC | 19:12 | |
*** openstackgerrit has quit IRC | 19:19 | |
*** teng has joined #openstack-horizon | 19:21 | |
*** teng has quit IRC | 19:21 | |
*** chlong_ has quit IRC | 19:37 | |
*** chlong has quit IRC | 19:37 | |
*** jtomasek_ has joined #openstack-horizon | 19:42 | |
*** chlong has joined #openstack-horizon | 19:42 | |
*** jtomasek_ has quit IRC | 19:46 | |
*** ying_zuo has quit IRC | 19:48 | |
*** ying_zuo has joined #openstack-horizon | 20:01 | |
*** MasterOfBugs has quit IRC | 20:10 | |
*** jeremy_moffitt has quit IRC | 20:11 | |
*** kzaitsev_mb has quit IRC | 20:12 | |
*** lucasxu has quit IRC | 20:17 | |
*** aortega has quit IRC | 20:19 | |
*** jtomasek_ has joined #openstack-horizon | 20:23 | |
*** jeremy_moffitt has joined #openstack-horizon | 20:24 | |
*** kzaitsev_mb has joined #openstack-horizon | 20:33 | |
*** aortega has joined #openstack-horizon | 20:48 | |
*** mvk has joined #openstack-horizon | 21:04 | |
*** jtriley has quit IRC | 21:07 | |
*** lblanchard has quit IRC | 21:08 | |
*** chlong has quit IRC | 21:08 | |
*** kzaitsev_mb has quit IRC | 21:19 | |
*** kzaitsev_mb has joined #openstack-horizon | 21:25 | |
*** amoralej|off has quit IRC | 21:55 | |
*** Pavo has joined #openstack-horizon | 22:11 | |
*** mtanino has quit IRC | 22:20 | |
*** jtomasek_ has quit IRC | 22:24 | |
*** ZZelle has quit IRC | 22:25 | |
*** wolverineav has joined #openstack-horizon | 22:42 | |
*** wolverineav has quit IRC | 22:42 | |
*** wolverineav has joined #openstack-horizon | 22:42 | |
*** shuyingya has joined #openstack-horizon | 22:47 | |
*** shuyingya has quit IRC | 22:51 | |
*** openstackgerrit has joined #openstack-horizon | 22:59 | |
openstackgerrit | wei.ying proposed openstack/horizon master: Delete instance,volume,etc confirmation is missing name or ID https://review.openstack.org/454146 | 22:59 |
*** gugl_ has joined #openstack-horizon | 23:19 | |
*** gugl_ has quit IRC | 23:20 | |
openstackgerrit | wei.ying proposed openstack/horizon master: Fix remove consistency group volumes form exception https://review.openstack.org/454921 | 23:45 |
openstackgerrit | wei.ying proposed openstack/horizon master: Remove consistency group volumes form execute exception https://review.openstack.org/454921 | 23:49 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!