TravT | so, part of the priority is to also not have to replace every single piece of functionality in the process so we can incrementally rebuild. (e.g. a dashboard with old an new). | 00:01 |
---|---|---|
TravT | or we will never get there. | 00:01 |
tqtran | i should probably just log off before this conversation derails into something else lol | 00:02 |
TravT | tqtran: i also want to move forward here. let's just do a bit more investigation into if there is a way around this on Monday before merging this patch through. | 00:02 |
tqtran | anway, have a good 4th of july everyone! im gonna log off and stop thinking about work for a while :) | 00:03 |
*** tqtran has quit IRC | 00:03 | |
lhcheng | tqtran: lol have a good one | 00:03 |
sqchen | Hi guys, if you still havve time, can you help to get these two in? | 00:04 |
sqchen | 198073 and 196271 | 00:05 |
*** Sukhdev has quit IRC | 00:14 | |
*** tjones1 has quit IRC | 00:16 | |
*** skylerberg has quit IRC | 00:17 | |
*** darrenc is now known as darrenc_afk | 00:20 | |
*** yingjun has joined #openstack-horizon | 00:25 | |
*** yamamoto has joined #openstack-horizon | 00:26 | |
*** raildo_ has quit IRC | 00:27 | |
*** juggler has joined #openstack-horizon | 00:28 | |
*** jingjing_ren has quit IRC | 00:38 | |
*** sqchen has quit IRC | 00:43 | |
*** sqchen has joined #openstack-horizon | 00:47 | |
*** yingjun has quit IRC | 00:48 | |
*** clu_ has quit IRC | 00:52 | |
*** yingjun has joined #openstack-horizon | 00:52 | |
*** TravT has quit IRC | 00:53 | |
*** chlong has joined #openstack-horizon | 00:57 | |
*** yamamoto has quit IRC | 00:58 | |
*** sqchen has quit IRC | 01:04 | |
*** sqchen has joined #openstack-horizon | 01:05 | |
*** sqchen has quit IRC | 01:07 | |
*** jingjing_ren has joined #openstack-horizon | 01:09 | |
*** Longgeek has joined #openstack-horizon | 01:10 | |
openstackgerrit | Merged openstack/horizon: Fix _get_tenant_volume_usages https://review.openstack.org/196523 | 01:12 |
*** jingjing_ren has quit IRC | 01:15 | |
*** Longgeek has quit IRC | 01:18 | |
*** mfisch has quit IRC | 01:20 | |
*** darrenc_afk is now known as darrenc | 01:20 | |
*** andrewbogott_afk is now known as andrewbogott | 01:39 | |
*** stevemar has joined #openstack-horizon | 01:46 | |
*** flwang1 has joined #openstack-horizon | 01:47 | |
flwang1 | lhcheng: ping | 01:47 |
lhcheng | flwang1: pong | 01:47 |
flwang1 | lhcheng: may i ask a question? | 01:48 |
flwang1 | lhcheng: i'm going to disable the resource usage sub menu under admin, so i just commented out this line https://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/admin/metering/panel.py#L28 | 01:49 |
flwang1 | it works, but after run ./run_tests.sh i got an ERROR: Failure: NoReverseMatch (u'metering' is not a registered namespace inside 'horizon:admin') | 01:49 |
flwang1 | lhcheng: any idea? thanks | 01:50 |
lhcheng | flwang1: the tests expects the metering panel to be available, it is expected that tests will fail | 01:52 |
flwang1 | so what's the correct way to disable a panel? | 01:53 |
lhcheng | flwang1: may I ask why do you want to disable the resource usage sub menu? | 01:53 |
flwang1 | because in our env, it always break ceilometer | 01:53 |
lhcheng | are you using ceilometer? | 01:55 |
lhcheng | maybe you can just remove it from the keystone service catalog | 01:55 |
flwang1 | nope | 01:55 |
lhcheng | if you remove it from the keystone service catalog, the panel will be hidden | 01:55 |
lhcheng | https://github.com/openstack/horizon/blob/master/openstack_dashboard/dashboards/admin/metering/panel.py#L22 | 01:55 |
flwang1 | we just want to disable this panel | 01:55 |
lhcheng | this panel is only rendered if metering is available in the service catalog | 01:56 |
lhcheng | would removing it in service catalog work for you? | 01:57 |
flwang1 | we're using ceilometer for billing | 01:59 |
flwang1 | so your suggestion doesn't work | 01:59 |
flwang1 | is there any other easy way to disable a panel? | 01:59 |
lhcheng | you can add a line in https://github.com/openstack/horizon/blob/master/openstack_dashboard/conf/ceilometer_policy.json#L6 | 02:02 |
lhcheng | set the "default" policy to always return False | 02:02 |
flwang1 | lhcheng: cool. let me try, thanks a lot | 02:03 |
flwang1 | oh, shit, it's a new feature, right? | 02:03 |
flwang1 | i'm using icehouse | 02:03 |
lhcheng | that way, horizon thinks user don't have access to ceilometer | 02:03 |
lhcheng | oh.. | 02:04 |
lhcheng | yeah | 02:04 |
lhcheng | try renaming | 02:04 |
lhcheng | https://github.com/openstack/horizon/blob/icehouse-eol/openstack_dashboard/dashboards/admin/metering/panel.py#L24 | 02:04 |
lhcheng | 'openstack.services.metering' -> 'openstack.services.metering-hidden' | 02:05 |
lhcheng | the panel would still be hidden that way, but not sure if tests will still pass | 02:06 |
flwang1 | let me try | 02:07 |
flwang1 | doesn't work, a lot of unrelated cases failed | 02:08 |
flwang1 | :'( | 02:10 |
flwang1 | i can't believe there is a way | 02:10 |
*** andrewbogott is now known as andrewbogott_afk | 02:11 | |
lhcheng | flwang1: okay, I think what you need to do is use the customization module | 02:12 |
lhcheng | and unregister the panel using that | 02:12 |
lhcheng | http://docs.openstack.org/developer/horizon/topics/customizing.html | 02:12 |
flwang1 | what did you mean ' customization module' | 02:12 |
lhcheng | http://docs.openstack.org/developer/horizon/topics/customizing.html#modifying-existing-dashboards-and-panels | 02:12 |
lhcheng | there is a sample there to unregister a panel | 02:13 |
*** stevemar has quit IRC | 02:16 | |
flwang1 | i think unregister equals comment out the register line | 02:16 |
flwang1 | it works for function, but test always failed | 02:16 |
*** stevemar has joined #openstack-horizon | 02:16 | |
*** yingjun has quit IRC | 02:16 | |
lhcheng | if you do it in customization_module, it should not apply during run test | 02:17 |
lhcheng | flwang1: sorry, have to go now | 02:18 |
lhcheng | be back in 2-3 hrs | 02:18 |
flwang1 | lhcheng: ok, see u | 02:18 |
lhcheng | flwang1: yeah, it does the same thing.. but this time, it should allow you to pass the test | 02:18 |
lhcheng | flwang1: bye, later | 02:19 |
*** lhcheng has quit IRC | 02:19 | |
*** stevemar has quit IRC | 02:21 | |
*** gyee has quit IRC | 02:33 | |
*** jwy has quit IRC | 02:34 | |
*** yamamoto has joined #openstack-horizon | 02:38 | |
*** julim has joined #openstack-horizon | 02:41 | |
*** mfisch has joined #openstack-horizon | 02:42 | |
*** mfisch is now known as Guest61548 | 02:42 | |
*** stevemar has joined #openstack-horizon | 02:48 | |
*** stevemar has quit IRC | 02:51 | |
openstackgerrit | Merged openstack/horizon: Add anti-ClickJack XFS hardening for old browsers https://review.openstack.org/191591 | 02:53 |
*** clu_ has joined #openstack-horizon | 02:57 | |
*** clu_ has quit IRC | 02:59 | |
*** Longgeek has joined #openstack-horizon | 02:59 | |
*** sqchen has joined #openstack-horizon | 03:06 | |
openstackgerrit | Shaoquan Chen proposed openstack/horizon: Extending Karma config https://review.openstack.org/198073 | 03:13 |
*** yingjun has joined #openstack-horizon | 03:14 | |
*** kiran-r has joined #openstack-horizon | 03:15 | |
*** Longgeek has quit IRC | 03:16 | |
openstackgerrit | Shaoquan Chen proposed openstack/horizon: Dashboard ReOrg - Create 'project' module https://review.openstack.org/196271 | 03:17 |
*** stevemar has joined #openstack-horizon | 03:35 | |
*** julim has quit IRC | 03:36 | |
*** sqchen has quit IRC | 03:39 | |
*** raildo has quit IRC | 03:48 | |
*** ericksonsantos has quit IRC | 03:48 | |
*** iurygregory has quit IRC | 03:48 | |
*** pauloewerton has quit IRC | 03:48 | |
*** htruta has quit IRC | 03:48 | |
*** yingjun has quit IRC | 03:49 | |
*** sqchen has joined #openstack-horizon | 03:49 | |
*** sqchen has quit IRC | 04:02 | |
*** sqchen has joined #openstack-horizon | 04:02 | |
*** annashen has joined #openstack-horizon | 04:09 | |
*** kiran-r has quit IRC | 04:10 | |
*** stevemar has quit IRC | 04:13 | |
*** Longgeek has joined #openstack-horizon | 04:13 | |
*** stevemar has joined #openstack-horizon | 04:13 | |
*** Longgeek has quit IRC | 04:15 | |
*** Longgeek has joined #openstack-horizon | 04:15 | |
*** Longgeek has quit IRC | 04:16 | |
*** kiran-r has joined #openstack-horizon | 04:17 | |
*** Longgeek has joined #openstack-horizon | 04:17 | |
*** kiran-r has quit IRC | 04:22 | |
*** annashen has quit IRC | 04:25 | |
*** sqchen has quit IRC | 04:29 | |
*** sqchen has joined #openstack-horizon | 04:29 | |
*** sqchen has quit IRC | 04:33 | |
*** Longgeek has quit IRC | 04:42 | |
*** Longgeek has joined #openstack-horizon | 04:42 | |
*** amotoki has joined #openstack-horizon | 04:46 | |
*** yingjun has joined #openstack-horizon | 04:50 | |
*** Longgeek has quit IRC | 04:50 | |
*** Longgeek has joined #openstack-horizon | 04:51 | |
*** sqchen has joined #openstack-horizon | 04:51 | |
*** sqchen has quit IRC | 04:53 | |
*** sqchen has joined #openstack-horizon | 04:55 | |
*** rushiagr_away is now known as rushiagr | 04:58 | |
*** yingjun has quit IRC | 05:01 | |
*** stevemar has quit IRC | 05:03 | |
*** stevemar has joined #openstack-horizon | 05:04 | |
*** flwang1 has quit IRC | 05:08 | |
*** Longgeek has quit IRC | 05:10 | |
*** stevemar has quit IRC | 05:10 | |
*** stevemar has joined #openstack-horizon | 05:11 | |
*** Longgeek has joined #openstack-horizon | 05:12 | |
*** sqchen has quit IRC | 05:12 | |
*** Longgeek has quit IRC | 05:24 | |
*** Longgeek has joined #openstack-horizon | 05:24 | |
*** vg__ has joined #openstack-horizon | 05:24 | |
*** sqchen has joined #openstack-horizon | 05:28 | |
*** vg____ has joined #openstack-horizon | 05:32 | |
*** vg__ has quit IRC | 05:33 | |
*** yingjun has joined #openstack-horizon | 05:47 | |
*** igor____ has joined #openstack-horizon | 05:50 | |
*** igor___ has quit IRC | 05:53 | |
*** annashen has joined #openstack-horizon | 05:59 | |
openstackgerrit | Masco Kaliyamoorthy proposed openstack/horizon: Support of rescue instance in Horizon https://review.openstack.org/107379 | 06:06 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/horizon: Imported Translations from Transifex https://review.openstack.org/197847 | 06:06 |
*** masco_ has joined #openstack-horizon | 06:07 | |
*** annashen has quit IRC | 06:13 | |
*** annashen has joined #openstack-horizon | 06:15 | |
*** mrunge has joined #openstack-horizon | 06:15 | |
*** lhcheng has joined #openstack-horizon | 06:15 | |
*** jtomasek has joined #openstack-horizon | 06:19 | |
*** mrunge has quit IRC | 06:19 | |
*** annashen has quit IRC | 06:22 | |
*** mrunge has joined #openstack-horizon | 06:24 | |
*** sqchen has quit IRC | 06:28 | |
*** sqchen has joined #openstack-horizon | 06:31 | |
*** sqchen has quit IRC | 06:36 | |
*** yingjun has quit IRC | 06:42 | |
*** belmoreira has joined #openstack-horizon | 06:46 | |
*** romainh has joined #openstack-horizon | 06:49 | |
*** mpavlase has joined #openstack-horizon | 06:50 | |
*** Ala has joined #openstack-horizon | 06:51 | |
*** stevemar has quit IRC | 06:53 | |
*** stevemar has joined #openstack-horizon | 06:53 | |
*** stevemar has quit IRC | 06:56 | |
*** stevemar has joined #openstack-horizon | 06:57 | |
*** yingjun has joined #openstack-horizon | 06:58 | |
openstackgerrit | Romain Hardouin proposed openstack/horizon: DataTable column level policy https://review.openstack.org/164010 | 07:02 |
*** sqchen has joined #openstack-horizon | 07:06 | |
*** romainh has quit IRC | 07:10 | |
*** dguerri` has quit IRC | 07:10 | |
*** dguerri` has joined #openstack-horizon | 07:10 | |
*** dguerri` is now known as dguerri | 07:10 | |
*** yamamoto has quit IRC | 07:10 | |
*** josecastroleon1 has joined #openstack-horizon | 07:11 | |
*** romainh1 has joined #openstack-horizon | 07:11 | |
*** dguerri has quit IRC | 07:11 | |
*** dguerri has joined #openstack-horizon | 07:11 | |
*** josecastroleon has quit IRC | 07:11 | |
*** yamamoto has joined #openstack-horizon | 07:11 | |
*** mrunge_ has joined #openstack-horizon | 07:11 | |
*** MaxV has joined #openstack-horizon | 07:21 | |
*** sqchen has quit IRC | 07:23 | |
*** sqchen has joined #openstack-horizon | 07:27 | |
*** tsufiev has quit IRC | 07:32 | |
*** albertom has quit IRC | 07:32 | |
*** zz_ttrifonov is now known as ttrifonov | 07:33 | |
*** e0ne has joined #openstack-horizon | 07:33 | |
*** vikram has joined #openstack-horizon | 07:33 | |
*** chlong has quit IRC | 07:33 | |
*** powerbsd has joined #openstack-horizon | 07:33 | |
*** tsufiev_ has joined #openstack-horizon | 07:33 | |
*** markus_z has joined #openstack-horizon | 07:33 | |
*** powerbsd is now known as albertom | 07:33 | |
*** albertom has quit IRC | 07:33 | |
*** albertom has joined #openstack-horizon | 07:33 | |
*** markus_z has quit IRC | 07:33 | |
*** markus_z has joined #openstack-horizon | 07:33 | |
*** robcresswell has joined #openstack-horizon | 07:35 | |
*** e0ne has quit IRC | 07:36 | |
*** sqchen has quit IRC | 07:39 | |
*** lhcheng has quit IRC | 07:41 | |
*** stevemar has quit IRC | 07:41 | |
*** jcoufal has joined #openstack-horizon | 07:41 | |
*** lhcheng has joined #openstack-horizon | 07:41 | |
*** bluex-pl has joined #openstack-horizon | 07:42 | |
*** stevemar has joined #openstack-horizon | 07:42 | |
*** bluex-pl has quit IRC | 07:42 | |
*** jcoufal_ has joined #openstack-horizon | 07:42 | |
*** bluex-pl has joined #openstack-horizon | 07:42 | |
*** jcoufal has quit IRC | 07:46 | |
*** dguerri has quit IRC | 07:48 | |
*** openstackstatus has quit IRC | 07:49 | |
*** dguerri has joined #openstack-horizon | 07:50 | |
*** dguerri is now known as dguerri` | 07:50 | |
*** aix has joined #openstack-horizon | 07:50 | |
*** openstackstatus has joined #openstack-horizon | 07:51 | |
*** ChanServ sets mode: +v openstackstatus | 07:51 | |
*** TravT has joined #openstack-horizon | 08:02 | |
*** JeanBriceCombebi has joined #openstack-horizon | 08:03 | |
*** ygbo has joined #openstack-horizon | 08:05 | |
*** mrunge_ has quit IRC | 08:11 | |
*** stevemar has quit IRC | 08:20 | |
*** TravT has quit IRC | 08:28 | |
openstackgerrit | Romain Hardouin proposed openstack/horizon: Show datastores and versions for Trove https://review.openstack.org/163196 | 08:33 |
*** mpavlase has quit IRC | 08:34 | |
openstackgerrit | Merged openstack/horizon: Extending Karma config https://review.openstack.org/198073 | 08:36 |
*** JeanBriceCombebi has quit IRC | 08:39 | |
*** JeanBriceCombebi has joined #openstack-horizon | 08:41 | |
*** kzaitsev_mb has joined #openstack-horizon | 08:44 | |
*** JeanBriceCombebi has quit IRC | 08:50 | |
*** JeanBriceCombebi has joined #openstack-horizon | 08:50 | |
*** kzaitsev_mb has quit IRC | 08:53 | |
*** jcoufal_ has quit IRC | 08:57 | |
*** openstackgerrit has quit IRC | 08:57 | |
*** openstackgerrit has joined #openstack-horizon | 08:58 | |
*** jcoufal has joined #openstack-horizon | 09:05 | |
*** akrivoka has joined #openstack-horizon | 09:07 | |
*** e0ne has joined #openstack-horizon | 09:08 | |
*** yingjun has quit IRC | 09:08 | |
*** mflobo has quit IRC | 09:09 | |
*** josecastroleon1 has quit IRC | 09:10 | |
*** belmoreira has quit IRC | 09:11 | |
openstackgerrit | Merged openstack/horizon: JSCS Cleanup - style guide cleanup for Util > Bind Scope https://review.openstack.org/197242 | 09:11 |
*** jcoufal has quit IRC | 09:12 | |
*** jcoufal has joined #openstack-horizon | 09:16 | |
*** yingjun has joined #openstack-horizon | 09:18 | |
*** stevemar has joined #openstack-horizon | 09:21 | |
*** josecastroleon has joined #openstack-horizon | 09:23 | |
*** annashen has joined #openstack-horizon | 09:23 | |
*** stevemar has quit IRC | 09:24 | |
*** annashen has quit IRC | 09:27 | |
*** yingjun has quit IRC | 09:29 | |
*** tsufiev_ is now known as tsufiev | 09:32 | |
*** TravT has joined #openstack-horizon | 09:33 | |
*** TravT has quit IRC | 09:34 | |
*** TravT_ has joined #openstack-horizon | 09:34 | |
*** bluex-pl has quit IRC | 09:35 | |
*** bluex-pl has joined #openstack-horizon | 09:35 | |
*** belmoreira has joined #openstack-horizon | 09:39 | |
*** TravT_ has quit IRC | 09:39 | |
openstackgerrit | Merged openstack/horizon: Imported Translations from Transifex https://review.openstack.org/197847 | 09:40 |
*** JeanBriceCombebi has quit IRC | 09:43 | |
*** JeanBriceCombebi has joined #openstack-horizon | 09:43 | |
*** tosky has joined #openstack-horizon | 09:46 | |
openstackgerrit | Kuo-tung Kao proposed openstack/horizon: delete failed when object id with special char. https://review.openstack.org/198281 | 09:49 |
*** yamamoto has quit IRC | 09:50 | |
*** igor____ has quit IRC | 09:55 | |
*** yamamoto has joined #openstack-horizon | 09:58 | |
*** bluex-pl has quit IRC | 10:06 | |
*** bluex-pl has joined #openstack-horizon | 10:07 | |
*** bluex-pl has quit IRC | 10:07 | |
*** bluex-pl has joined #openstack-horizon | 10:08 | |
openstackgerrit | Merged openstack/horizon: Corrections to WEBROOT docs. https://review.openstack.org/198099 | 10:17 |
*** lhcheng has quit IRC | 10:23 | |
*** bluex-pl has quit IRC | 10:24 | |
*** bluex-pl has joined #openstack-horizon | 10:24 | |
*** yamamoto has quit IRC | 10:31 | |
*** JeanBriceCombebi has quit IRC | 10:36 | |
*** kzaitsev_mb has joined #openstack-horizon | 10:38 | |
*** bluex-pl has quit IRC | 10:40 | |
openstackgerrit | Vlad Okhrimenko proposed openstack/horizon: Drop QUnit JS tests in favor of Jasmine https://review.openstack.org/156572 | 10:45 |
*** bluex-pl has joined #openstack-horizon | 10:51 | |
*** bluex-pl has quit IRC | 11:02 | |
*** ttrifonov is now known as zz_ttrifonov | 11:02 | |
*** TravT has joined #openstack-horizon | 11:04 | |
*** TravT has quit IRC | 11:05 | |
*** TravT_ has joined #openstack-horizon | 11:05 | |
*** bluex-pl has joined #openstack-horizon | 11:05 | |
*** TravT_ has quit IRC | 11:06 | |
*** TravT has joined #openstack-horizon | 11:06 | |
*** robcresswell has quit IRC | 11:07 | |
*** TravT has quit IRC | 11:07 | |
*** TravT has joined #openstack-horizon | 11:07 | |
*** robcresswell has joined #openstack-horizon | 11:08 | |
*** TravT has quit IRC | 11:09 | |
*** TravT_ has joined #openstack-horizon | 11:09 | |
*** TravT_ has quit IRC | 11:10 | |
*** TravT has joined #openstack-horizon | 11:10 | |
*** stevemar has joined #openstack-horizon | 11:10 | |
*** TravT has quit IRC | 11:10 | |
*** TravT has joined #openstack-horizon | 11:11 | |
*** yamamoto has joined #openstack-horizon | 11:11 | |
*** TravT has quit IRC | 11:12 | |
*** TravT_ has joined #openstack-horizon | 11:12 | |
*** TravT_ has quit IRC | 11:13 | |
*** TravT has joined #openstack-horizon | 11:13 | |
*** stevemar has quit IRC | 11:14 | |
*** TravT has quit IRC | 11:18 | |
*** MaxV has quit IRC | 11:25 | |
*** vg____ has quit IRC | 11:29 | |
*** romainh1 has left #openstack-horizon | 11:33 | |
*** romainh has joined #openstack-horizon | 11:34 | |
*** mflobo has joined #openstack-horizon | 11:36 | |
*** radez is now known as radez_g0n3 | 11:37 | |
*** kzaitsev_mb has quit IRC | 11:37 | |
*** MaxV has joined #openstack-horizon | 11:38 | |
*** dguerri` is now known as dguerri | 11:46 | |
*** ericksonsantos has joined #openstack-horizon | 11:53 | |
openstackgerrit | Merged openstack/tuskar-ui: Updated from global requirements https://review.openstack.org/196850 | 11:54 |
*** e0ne is now known as e0ne_ | 12:08 | |
*** raildo has joined #openstack-horizon | 12:08 | |
*** lhcheng has joined #openstack-horizon | 12:09 | |
*** e0ne_ is now known as e0ne | 12:12 | |
*** lhcheng has quit IRC | 12:13 | |
*** igor___ has joined #openstack-horizon | 12:14 | |
*** JeanBriceCombebi has joined #openstack-horizon | 12:20 | |
openstackgerrit | Vlad Okhrimenko proposed openstack/horizon: Add integration tests for Identity->Projects page https://review.openstack.org/168935 | 12:20 |
*** e0ne_ has joined #openstack-horizon | 12:25 | |
*** bluex-pl has quit IRC | 12:26 | |
openstackgerrit | Vlad Okhrimenko proposed openstack/horizon: Add integration tests for Identity->Projects page https://review.openstack.org/168935 | 12:27 |
*** e0ne has quit IRC | 12:28 | |
*** jasondotstar has joined #openstack-horizon | 12:33 | |
*** JeanBriceCombebi has quit IRC | 12:35 | |
*** JeanBriceCombebi has joined #openstack-horizon | 12:35 | |
*** zhenguo has quit IRC | 12:43 | |
*** Longgeek has quit IRC | 12:49 | |
*** iurygregory has joined #openstack-horizon | 12:49 | |
*** Longgeek has joined #openstack-horizon | 12:49 | |
*** pauloewerton has joined #openstack-horizon | 12:57 | |
*** TravT has joined #openstack-horizon | 13:02 | |
*** e0ne has joined #openstack-horizon | 13:05 | |
*** TravT has quit IRC | 13:07 | |
*** e0ne_ has quit IRC | 13:08 | |
*** peristeri has joined #openstack-horizon | 13:11 | |
*** Longgeek_ has joined #openstack-horizon | 13:14 | |
*** JeanBriceCombebi has quit IRC | 13:15 | |
*** JeanBriceCombebi has joined #openstack-horizon | 13:15 | |
*** Longgeek_ has quit IRC | 13:15 | |
*** Longgeek has quit IRC | 13:15 | |
*** Longgeek has joined #openstack-horizon | 13:16 | |
*** dboik has joined #openstack-horizon | 13:16 | |
*** petertr7_away is now known as petertr7 | 13:19 | |
*** dboik has quit IRC | 13:20 | |
openstackgerrit | Ilya Tyaptin proposed openstack/horizon: Add a 1 hour period to "metering" dashboard https://review.openstack.org/173961 | 13:26 |
*** bluex-pl has joined #openstack-horizon | 13:36 | |
*** ZZelle has quit IRC | 13:42 | |
*** ZZelle has joined #openstack-horizon | 13:42 | |
*** bluex-pl has quit IRC | 13:47 | |
*** amotoki has quit IRC | 13:47 | |
*** jasondotstar has quit IRC | 13:50 | |
*** andrewbogott_afk is now known as andrewbogott | 13:51 | |
*** lhcheng has joined #openstack-horizon | 13:58 | |
*** masco_ has quit IRC | 13:59 | |
*** raildo has quit IRC | 14:00 | |
*** JeanBriceCombebi has quit IRC | 14:00 | |
*** lhcheng has quit IRC | 14:02 | |
*** TravT has joined #openstack-horizon | 14:03 | |
*** TravT has quit IRC | 14:03 | |
*** TravT has joined #openstack-horizon | 14:04 | |
*** ericksonsantos has quit IRC | 14:05 | |
*** TravT has quit IRC | 14:05 | |
*** pauloewerton has quit IRC | 14:05 | |
*** iurygregory has quit IRC | 14:05 | |
*** TravT has joined #openstack-horizon | 14:05 | |
*** TravT has quit IRC | 14:06 | |
*** TravT has joined #openstack-horizon | 14:06 | |
*** ericksonsantos has joined #openstack-horizon | 14:07 | |
*** TravT has quit IRC | 14:07 | |
*** raildo has joined #openstack-horizon | 14:08 | |
*** TravT has joined #openstack-horizon | 14:08 | |
*** TravT has quit IRC | 14:08 | |
*** JeanBriceCombebi has joined #openstack-horizon | 14:09 | |
*** TravT has joined #openstack-horizon | 14:09 | |
*** TravT has quit IRC | 14:10 | |
*** TravT has joined #openstack-horizon | 14:10 | |
*** iurygregory has joined #openstack-horizon | 14:11 | |
*** TravT has quit IRC | 14:11 | |
*** TravT has joined #openstack-horizon | 14:11 | |
*** TravT has quit IRC | 14:16 | |
*** andrewbogott is now known as andrewbogott_afk | 14:17 | |
*** petertr7 is now known as petertr7_away | 14:18 | |
*** odyssey4me has joined #openstack-horizon | 14:20 | |
*** petertr7_away is now known as petertr7 | 14:21 | |
*** zz_ttrifonov is now known as ttrifonov | 14:22 | |
*** lhcheng has joined #openstack-horizon | 14:22 | |
*** TravT has joined #openstack-horizon | 14:23 | |
*** Piet has joined #openstack-horizon | 14:25 | |
*** lhcheng has quit IRC | 14:26 | |
*** pauloewerton has joined #openstack-horizon | 14:33 | |
EmilienM | does anyone can review this puppet-horizon small change? I just want to be sure it's the right thing to do: https://review.openstack.org/#/c/198119/ | 14:41 |
*** e0ne is now known as e0ne_ | 14:44 | |
*** e0ne_ is now known as e0ne | 14:46 | |
*** stevemar has joined #openstack-horizon | 14:47 | |
robcresswell | EmilienM: Looking now | 14:48 |
EmilienM | thank you | 14:48 |
*** htruta has joined #openstack-horizon | 14:50 | |
*** stevemar has quit IRC | 14:51 | |
*** JeanBriceCombebi has quit IRC | 14:51 | |
*** robcresswell has quit IRC | 14:53 | |
*** masco_ has joined #openstack-horizon | 14:54 | |
*** robcresswell has joined #openstack-horizon | 14:54 | |
robcresswell | EmilienM: Hmm, I'm struggling to recreate the bug. Is it specific to that package? | 14:54 |
*** belmoreira has quit IRC | 14:54 | |
EmilienM | robcresswell: I guess they use trusty | 14:54 |
robcresswell | EmilienM: Its vivid in the bug report, although weirdly there is an almost identical bug in trusty | 15:02 |
robcresswell | EmilienM: Except its less rather than scss | 15:03 |
*** Ala has quit IRC | 15:03 | |
EmilienM | robcresswell: feel free to comment! | 15:03 |
EmilienM | and vote | 15:03 |
*** Ala has joined #openstack-horizon | 15:03 | |
*** Ala has quit IRC | 15:04 | |
robcresswell | Added to my ever-growing to do list. | 15:06 |
*** odyssey4me has left #openstack-horizon | 15:06 | |
robcresswell | I'll spin up a 15.04 env and look into it some more | 15:06 |
*** annashen has joined #openstack-horizon | 15:07 | |
*** masco_ has quit IRC | 15:09 | |
*** robcresswell has quit IRC | 15:14 | |
*** ducttape_ has joined #openstack-horizon | 15:16 | |
openstackgerrit | Yves-Gwenael Bourhis proposed openstack/horizon: Only use ports with non empy list of fixed_ips https://review.openstack.org/198397 | 15:16 |
*** jcoufal has quit IRC | 15:18 | |
*** annashen has quit IRC | 15:18 | |
*** yamamoto has quit IRC | 15:18 | |
*** vikram has quit IRC | 15:18 | |
*** ducttape_ has quit IRC | 15:18 | |
*** ducttape_ has joined #openstack-horizon | 15:26 | |
*** yamamoto has joined #openstack-horizon | 15:28 | |
*** pkarikh has quit IRC | 15:33 | |
*** e0ne has quit IRC | 15:45 | |
*** ygbo has quit IRC | 15:47 | |
*** amotoki has joined #openstack-horizon | 15:49 | |
*** ericksonsantos has quit IRC | 15:52 | |
*** cody-somerville has joined #openstack-horizon | 15:53 | |
*** akrivoka has quit IRC | 15:54 | |
*** ducttape_ has quit IRC | 15:55 | |
*** petertr7 is now known as petertr7_away | 15:57 | |
*** TravT_ has joined #openstack-horizon | 15:58 | |
*** petertr7_away is now known as petertr7 | 15:59 | |
*** TravT has quit IRC | 16:00 | |
*** markus_z has quit IRC | 16:02 | |
*** ducttape_ has joined #openstack-horizon | 16:09 | |
*** nlahouti has joined #openstack-horizon | 16:15 | |
*** stevemar has joined #openstack-horizon | 16:15 | |
*** nlahouti has quit IRC | 16:17 | |
*** reed has quit IRC | 16:25 | |
*** reed_ is now known as reed | 16:25 | |
*** sqchen has joined #openstack-horizon | 16:28 | |
*** petertr7 is now known as petertr7_away | 16:31 | |
*** yamamoto has quit IRC | 16:32 | |
*** yamamoto has joined #openstack-horizon | 16:33 | |
*** doug-fish has joined #openstack-horizon | 16:34 | |
*** ducttape_ has quit IRC | 16:34 | |
*** doug-fish has quit IRC | 16:34 | |
*** andrewbogott_afk is now known as andrewbogott | 16:34 | |
*** andrewbogott is now known as andrewbogott_afk | 16:35 | |
*** ducttape_ has joined #openstack-horizon | 16:37 | |
*** romainh has left #openstack-horizon | 16:41 | |
*** ducttape_ has quit IRC | 16:43 | |
*** sqchen has quit IRC | 16:45 | |
*** sqchen has joined #openstack-horizon | 16:45 | |
*** dguerri is now known as dguerri` | 16:47 | |
*** tosky has quit IRC | 16:50 | |
*** ducttape_ has joined #openstack-horizon | 16:51 | |
*** Sukhdev has joined #openstack-horizon | 16:53 | |
*** tosky has joined #openstack-horizon | 16:58 | |
*** ducttape_ has quit IRC | 16:58 | |
*** MaxV has quit IRC | 17:01 | |
*** ducttape_ has joined #openstack-horizon | 17:02 | |
*** ducttape_ has quit IRC | 17:05 | |
*** ducttape_ has joined #openstack-horizon | 17:08 | |
*** mgarza_ has joined #openstack-horizon | 17:24 | |
*** tjones1 has joined #openstack-horizon | 17:24 | |
*** sqchen has left #openstack-horizon | 17:26 | |
*** tosky has quit IRC | 17:27 | |
*** tjones1 has quit IRC | 17:28 | |
*** ameade_vacation has quit IRC | 17:35 | |
*** ameade_vacation has joined #openstack-horizon | 17:35 | |
*** petertr7_away is now known as petertr7 | 17:36 | |
*** tjones1 has joined #openstack-horizon | 17:41 | |
*** yamamoto has quit IRC | 17:49 | |
*** ducttape_ has quit IRC | 18:05 | |
*** mgarza_ has quit IRC | 18:06 | |
*** ducttape_ has joined #openstack-horizon | 18:07 | |
*** jasondotstar has joined #openstack-horizon | 18:07 | |
*** tjones1 has left #openstack-horizon | 18:09 | |
*** mgarza_ has joined #openstack-horizon | 18:10 | |
*** stevemar has quit IRC | 18:10 | |
*** kcaj has quit IRC | 18:10 | |
*** stevemar has joined #openstack-horizon | 18:10 | |
*** kcaj has joined #openstack-horizon | 18:11 | |
*** zigo has quit IRC | 18:18 | |
*** ducttape_ has quit IRC | 18:21 | |
*** zigo has joined #openstack-horizon | 18:22 | |
*** masco_ has joined #openstack-horizon | 18:24 | |
*** dguerri` is now known as dguerri | 18:34 | |
*** dguerri is now known as dguerri` | 18:36 | |
*** dguerri` is now known as dguerri | 18:36 | |
*** dguerri is now known as dguerri` | 18:38 | |
*** jasondotstar has quit IRC | 18:42 | |
*** Sukhdev_ has joined #openstack-horizon | 18:42 | |
*** stevemar has quit IRC | 18:43 | |
*** Sukhdev has quit IRC | 18:44 | |
*** mgarza_ has quit IRC | 18:49 | |
*** petertr7 is now known as petertr7_away | 18:50 | |
*** yamamoto has joined #openstack-horizon | 18:50 | |
*** petertr7_away is now known as petertr7 | 18:50 | |
*** yamamoto has quit IRC | 18:55 | |
openstackgerrit | Shaoquan Chen proposed openstack/horizon: Dashboard ReOrg - Create 'project' module https://review.openstack.org/196271 | 18:56 |
*** mgarza_ has joined #openstack-horizon | 18:57 | |
-openstackstatus- NOTICE: etherpad.openstack.org is offline for scheduled database maintenance, ETA 19:30 UTC | 19:03 | |
*** ChanServ changes topic to "etherpad.openstack.org is offline for scheduled database maintenance, ETA 19:30 UTC" | 19:03 | |
*** masco_ has quit IRC | 19:03 | |
*** ducttape_ has joined #openstack-horizon | 19:18 | |
*** ducttape_ has quit IRC | 19:31 | |
-openstackstatus- NOTICE: etherpad.openstack.org is still offline for scheduled database maintenance, ETA 19:45 UTC | 19:31 | |
*** ChanServ changes topic to "etherpad.openstack.org is still offline for scheduled database maintenance, ETA 19:45 UTC" | 19:31 | |
*** igor___ has quit IRC | 19:33 | |
*** ducttape_ has joined #openstack-horizon | 19:33 | |
*** ducttape_ has quit IRC | 19:41 | |
*** mgarza_ has quit IRC | 19:49 | |
*** mgarza has joined #openstack-horizon | 19:49 | |
*** ChanServ changes topic to "OpenStack Horizon -- midcyle meetup info https://etherpad.openstack.org/p/horizon-liberty-midcycle" | 19:53 | |
*** Ephur has joined #openstack-horizon | 20:02 | |
*** fifieldt_ has joined #openstack-horizon | 20:19 | |
*** fifieldt has quit IRC | 20:22 | |
*** Sukhdev_ has quit IRC | 20:23 | |
*** dguerri` is now known as dguerri | 20:24 | |
*** dguerri is now known as dguerri` | 20:25 | |
*** jtriley has joined #openstack-horizon | 20:26 | |
*** raildo has quit IRC | 20:29 | |
*** stevemar has joined #openstack-horizon | 20:31 | |
*** mrunge has quit IRC | 20:34 | |
*** stevemar has quit IRC | 20:35 | |
*** Longgeek has quit IRC | 20:44 | |
*** jtomasek has quit IRC | 20:44 | |
*** Longgeek has joined #openstack-horizon | 20:45 | |
*** petertr7 is now known as petertr7_away | 20:48 | |
*** petertr7_away is now known as petertr7 | 20:49 | |
*** Longgeek has quit IRC | 20:49 | |
*** kcaj has quit IRC | 20:50 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/tuskar-ui: Updated from global requirements https://review.openstack.org/198460 | 20:51 |
*** jtriley has quit IRC | 20:56 | |
*** kcaj has joined #openstack-horizon | 20:56 | |
*** peristeri has quit IRC | 20:58 | |
*** amotoki has quit IRC | 21:05 | |
*** jasondotstar has joined #openstack-horizon | 21:08 | |
*** petertr7 is now known as petertr7_away | 21:08 | |
*** ttrifonov is now known as zz_ttrifonov | 21:25 | |
*** tjones1 has joined #openstack-horizon | 21:25 | |
*** stevemar has joined #openstack-horizon | 21:32 | |
*** stevemar has quit IRC | 21:36 | |
*** tjones1 has quit IRC | 21:44 | |
*** Longgeek has joined #openstack-horizon | 21:46 | |
*** pauloewerton has quit IRC | 21:57 | |
*** Longgeek has quit IRC | 21:58 | |
openstackgerrit | Ana Krivokapic proposed openstack/tuskar-ui: Properly handle provisioning images https://review.openstack.org/198464 | 22:04 |
*** jtriley has joined #openstack-horizon | 22:05 | |
*** jtriley has quit IRC | 22:10 | |
*** Ephur has quit IRC | 22:18 | |
*** rushiagr is now known as rushiagr_away | 22:23 | |
*** ducttape_ has joined #openstack-horizon | 22:26 | |
*** mgarza has quit IRC | 22:26 | |
*** ducttape_ has quit IRC | 22:31 | |
*** ducttape_ has joined #openstack-horizon | 22:34 | |
*** ducttape_ has quit IRC | 22:39 | |
*** dboik has joined #openstack-horizon | 22:47 | |
*** stevemar has joined #openstack-horizon | 22:48 | |
*** stevemar has quit IRC | 22:50 | |
*** dboik has quit IRC | 22:51 | |
*** Longgeek has joined #openstack-horizon | 22:55 | |
*** Longgeek has quit IRC | 23:17 | |
*** stevemar has joined #openstack-horizon | 23:18 | |
*** stevemar has quit IRC | 23:27 | |
*** stevemar has joined #openstack-horizon | 23:28 | |
*** jasondotstar has quit IRC | 23:43 | |
*** tjones1 has joined #openstack-horizon | 23:45 | |
*** tjones1 has left #openstack-horizon | 23:49 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!