Sunday, 2015-03-22

*** dboik has quit IRC00:28
*** mpavlase has quit IRC00:30
openstackgerritMerged openstack/horizon: Updated from global requirements  https://review.openstack.org/16643400:46
openstackgerritAkihiro Motoki proposed openstack/horizon: Allow to control word order in create_pseudo_folder  https://review.openstack.org/16656000:49
openstackgerritAkihiro Motoki proposed openstack/horizon: I18N: Allow to control word order in create_pseudo_folder  https://review.openstack.org/16656000:51
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Adding launch details step -WIP  https://review.openstack.org/16656100:53
*** ZZelle_ has quit IRC01:11
openstackgerritvishwanath jayaraman proposed openstack/horizon: Adds configuration support to associate firewall to routers  https://review.openstack.org/16255201:26
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enhancing wizard widget  https://review.openstack.org/16547501:37
*** alexvictorchan has joined #openstack-horizon01:43
*** sbfox has joined #openstack-horizon01:47
*** nkinder has joined #openstack-horizon01:49
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enhancing wizard widget  https://review.openstack.org/16547502:00
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enabling loading script from local file  https://review.openstack.org/16530002:01
*** nkinder has quit IRC02:13
*** alexvictorchan has quit IRC02:16
*** nkinder has joined #openstack-horizon02:18
*** sbfox has quit IRC02:21
*** nkinder has quit IRC02:35
openstackgerritJoseph Bajin proposed openstack/horizon: Added cancel_url to settings dashboard  https://review.openstack.org/16656902:42
*** lhcheng has quit IRC02:47
david-lylevishwana_: if you ping me on Monday, I'd be happy to help you02:57
vishwana_david_lyle, Thanks a bunch, I was able to get past the issue with guidance from Akhiro, however, I still have an issue with the router URLs being incorrect in the firewall details page, I may contact you on Monday if it does not get resolved before then. Thanks once again for offer of help02:59
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enhancing wizard widget  https://review.openstack.org/16547503:09
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enabling loading script from local file  https://review.openstack.org/16530003:13
*** sbfox has joined #openstack-horizon03:25
openstackgerritShaoquan Chen proposed openstack/horizon: Launch Instance - Optional Network Enabled  https://review.openstack.org/16435903:29
openstackgerritvishwanath jayaraman proposed openstack/horizon: Adds configuration support to associate firewall to routers  https://review.openstack.org/16255203:35
*** sbfox has quit IRC03:38
openstackgerritvishwanath jayaraman proposed openstack/horizon: Adds configuration support to associate firewall to routers  https://review.openstack.org/16255203:39
*** lhcheng has joined #openstack-horizon03:47
*** lhcheng has quit IRC03:52
*** raginbaj- has joined #openstack-horizon03:57
*** raginbajin has quit IRC03:58
*** raginbaj- is now known as raginbajin03:59
*** lhcheng has joined #openstack-horizon04:03
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Wizard should have max-width of 1440px  https://review.openstack.org/16636304:24
*** bpokorny has quit IRC04:55
openstackgerritAbishek Subramanian proposed openstack/horizon: Adds configuration support to associate firewall to routers  https://review.openstack.org/16255204:57
absubramhi.. anyone familiar with the index tests that we have in the tests.py files? I’m having a little trouble with a particular index test and would love some help in figuring out why05:15
lhchenghey absubram05:15
lhchengwhat's going on?05:16
*** akanksha has quit IRC05:17
absubramhey lhcheng! ty05:17
absubramso most index tests have this self.assertEqual test at the end?05:17
absubramand somehow the changes we have made is causing that to fail.. I understand it is comparing the “data” that from the context.. to what is provided in the test_data files, correct?05:18
absubramso I’m wondering what I’m missing that’s causing the assert05:18
lhchengdo you have which test is failing?05:19
absubramsure.. but you might need to patch in our review diffs for that :)05:19
lhchengmostly index test checks that the correct template used, and the table data05:20
absubramhttps://review.openstack.org/#/c/162552/05:20
lhchengdo you have it in gerrit?05:20
absubramI am failing the index_firewall tests..05:20
absubramwe had it all working ok till version 19.. but the last couple of changes we have made seem to have broken this one test..05:20
lhchengmaybe additional api call was added and haven't been mocked?05:21
lhchenghttps://review.openstack.org/#/c/162552/19..22/openstack_dashboard/dashboards/project/firewalls/views.py05:22
lhchengcould it be failing on this api call?05:22
lhchengwhat's the error you see when test fails05:23
absubramhmm the error is self.failureException(‘0’ != ‘1’)05:24
absubramso essentially.. the context data is somehow null05:24
absubramand that’s why it is not equal to the test data05:24
absubramso the question is why is the context data null… hmm05:25
lhcheng some error hiding05:25
lhchengpulling the patch05:25
absubramok.. thanks..05:26
absubramso my question was.. for these index tests..05:26
absubramwhat actual code is it that is actually run? Is it the IndexView class in views.py?05:26
absubramor is it the tables.py code?05:26
absubramwhere do I set my breakpoint to step through this test :)05:26
*** early has quit IRC05:27
*** briancline has quit IRC05:27
*** early has joined #openstack-horizon05:27
*** briancline has joined #openstack-horizon05:27
lhchengIndexView and FirewallTabs (contains the table)05:27
absubramgotcha..05:28
absubramso the difference in versions 18 and 19 is what caused this05:28
lhchenghttps://review.openstack.org/#/c/162552/18..19/openstack_dashboard/dashboards/project/firewalls/tabs.py05:32
lhchengapi.neutron.router_get(..) <- this call is not mocked05:32
absubramaha!05:32
lhchenghttps://review.openstack.org/#/c/162552/22/openstack_dashboard/test/test_data/neutron_data.py05:33
lhchengrouter_ids and router_names should be a list no?05:33
absubramyep.. you’re right on both accounts05:33
absubramthe assert checks only for len.. so we haven’t been flagged yet05:34
absubrambut that will fail new tests..05:34
absubramthanks Lin Hua! :)05:34
lhchengI guess the firewallTabs throw an error, and eat up the exception05:34
absubramI’m just testing with the new mock05:34
vishwana_absubram, lhcheng, I have another question related to this patch....05:34
lhchengreturning empty firewall records05:34
vishwana_The cod in file https://review.openstack.org/#/c/162552/22/openstack_dashboard/dashboards/project/firewalls/templates/firewalls/_firewall_details.html is not behaving as expected....the links to routers are pointing to the firewall instead of the individual routers05:36
vishwana_associated with the firewall05:37
lhchengthe url should be "horizon:project:routers:detail"05:39
lhchengwithout the detail, it will open the routers index page05:40
vishwana_oh, I see05:40
vishwana_let me try that out05:40
vishwana_lhcheng, that was it, that did the trick, I have spent many a sleepless nights the last week regarding this, a BIG THANKS to your help05:43
lhchengvishwana_: anytime, if you get blocked again just reach out to this room05:44
vishwana_lhcheng, will do, thanks a lot, I can now sleep peacefully :), you have a nice day05:45
lhchengvishwana_: hah okay, you can enjoy the rest of weekend05:45
absubramlhcheng: thank you so much! that worked like a charm :)05:45
lhchengabsubram: cool :)05:46
absubramvishwana_ : haha guess we fixed both the problems we were hitting!!05:46
absubramall thanks to Lin Hua! :)05:46
absubramwe owe him a drink in Vancouver ;)05:46
vishwana_+105:46
vishwana_a drink from me as well05:47
lhchengheh05:47
*** rushiagr_away is now known as rushiagr05:56
openstackgerritAbishek Subramanian proposed openstack/horizon: Adds configuration support to associate firewall to routers  https://review.openstack.org/16255205:56
*** vishwana_ has quit IRC06:00
*** stevemar has joined #openstack-horizon06:14
openstackgerritOpenStack Proposal Bot proposed openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/16658306:16
*** early has quit IRC06:27
*** briancline has quit IRC06:27
*** vishwanathj has joined #openstack-horizon06:29
*** early has joined #openstack-horizon06:29
openstackgerritMerged openstack/django_openstack_auth: Updated from global requirements  https://review.openstack.org/16643206:31
*** briancline has joined #openstack-horizon06:43
openstackgerritAbishek Subramanian proposed openstack/horizon: Adds configuration support to associate firewall to routers  https://review.openstack.org/16255206:48
*** lhcheng has quit IRC06:57
*** lhcheng has joined #openstack-horizon07:08
*** xazel has joined #openstack-horizon07:58
*** enykeev has quit IRC07:59
*** oro has joined #openstack-horizon08:18
*** rushiagr is now known as rushiagr_away08:19
*** stevemar has quit IRC08:30
openstackgerritMerged openstack/horizon: Imported Translations from Transifex  https://review.openstack.org/16658308:51
*** tnovacik has joined #openstack-horizon08:53
*** absubram has quit IRC08:57
*** dkorn has joined #openstack-horizon09:03
*** dkorn has quit IRC09:14
*** dkorn has joined #openstack-horizon09:30
*** ZZelle has quit IRC09:43
*** ZZelle has joined #openstack-horizon09:44
*** rushiagr_away is now known as rushiagr09:52
*** rushiagr is now known as rushiagr_away10:14
*** oro has quit IRC10:15
*** oro has joined #openstack-horizon10:26
*** Longgeek has joined #openstack-horizon10:28
*** btully has quit IRC10:34
*** btully has joined #openstack-horizon10:35
*** bradjones has quit IRC11:07
*** bradjones has joined #openstack-horizon11:10
*** lhcheng has quit IRC11:16
*** mpavlase has joined #openstack-horizon11:22
*** ZZelle_ has joined #openstack-horizon11:40
*** tnovacik has quit IRC11:57
*** lhcheng has joined #openstack-horizon12:16
*** lhcheng has quit IRC12:21
*** Longgeek has quit IRC12:22
*** mpavlase has quit IRC12:36
*** tnovacik has joined #openstack-horizon13:30
*** lhcheng has joined #openstack-horizon14:06
*** andrewbogott_afk is now known as andrewbogott14:07
*** lhcheng has quit IRC14:10
*** andrewbogott is now known as andrewbogott_afk14:21
*** ericksonsantos has joined #openstack-horizon14:21
*** htruta has joined #openstack-horizon14:21
*** dkorn has left #openstack-horizon14:53
*** mpavlase has joined #openstack-horizon14:58
*** tnovacik has quit IRC15:51
*** andrewbogott_afk is now known as andrewbogott16:08
*** cody-somerville has quit IRC17:03
*** andrewbogott is now known as andrewbogott_afk17:08
*** amotoki has joined #openstack-horizon17:15
*** cody-somerville has joined #openstack-horizon17:17
*** sbfox has joined #openstack-horizon17:24
*** andrewbogott_afk is now known as andrewbogott17:28
*** andrewbogott is now known as andrewbogott_afk17:28
*** lhcheng has joined #openstack-horizon17:43
*** lhcheng has quit IRC17:47
*** lhcheng has joined #openstack-horizon18:23
*** sbfox has quit IRC18:57
*** absubram has joined #openstack-horizon19:08
*** stevemar has joined #openstack-horizon19:15
*** sbfox has joined #openstack-horizon19:21
*** alexvictorchan has joined #openstack-horizon19:21
*** andrewbogott_afk is now known as andrewbogott19:28
*** andrewbogott is now known as andrewbogott_afk19:28
*** sbfox has quit IRC19:35
openstackgerritvishwanath jayaraman proposed openstack/horizon: Adds configuration support to associate firewall to routers  https://review.openstack.org/16255219:42
*** iamjarvo has joined #openstack-horizon20:08
*** ZZelle__ has joined #openstack-horizon20:16
ZZelle__amotoki, hi20:16
*** lhcheng is now known as lhcheng_afk20:16
*** r1chardj0n3s_afk is now known as r1chardj0n3s20:21
r1chardj0n3smorning20:22
*** ZZelle__ has quit IRC20:40
*** tnovacik has joined #openstack-horizon21:00
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enhancing wizard widget  https://review.openstack.org/16547521:05
*** rwsu has quit IRC21:06
*** rwsu has joined #openstack-horizon21:07
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enhancing wizard widget  https://review.openstack.org/16547521:09
openstackgerritShaoquan Chen proposed openstack/horizon: [Launch Instance Fix] Enhancing wizard widget  https://review.openstack.org/16547521:14
*** e0ne has joined #openstack-horizon21:27
*** stevemar has quit IRC21:33
*** e0ne has quit IRC21:53
*** iamjarvo has quit IRC21:59
*** jamielennox|away is now known as jamielennox22:00
*** ccrouch has joined #openstack-horizon22:10
*** ccrouch has left #openstack-horizon22:10
*** echevemaster has joined #openstack-horizon22:25
*** iamjarvo has joined #openstack-horizon22:29
*** iamjarvo has quit IRC22:40
*** mpavlase has quit IRC22:42
*** stevemar has joined #openstack-horizon22:58
*** Anticimex has quit IRC23:07
*** Anticimex has joined #openstack-horizon23:14
*** tnovacik has quit IRC23:17
*** alexvictorchan has quit IRC23:22
*** chlong has joined #openstack-horizon23:26
*** chlong has quit IRC23:40
*** chlong has joined #openstack-horizon23:40
*** oro has quit IRC23:46
*** echevemaster has quit IRC23:46
*** julim has quit IRC23:54

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