rm_you | it's functionally no change | 00:00 |
---|---|---|
rm_you | not sure why it broke | 00:00 |
johnsom | Ok. Given how widely across the code it failed, and three of the gates failed it out, I think it's not going to go without some work. | 00:00 |
crc32 | rm_you so I mangled some function names and ran "tox octavia.amphorae.backends.health_daemon.TestEnvelope" but it claimed python 2.7 passed which it clearly shoulden't have. Any speculation as to why tox would claim broken code passed? | 00:00 |
rm_you | crc32: bad mocks? | 00:00 |
rm_you | bad testing? | 00:00 |
rm_you | no idea | 00:00 |
rm_you | would have to see the code | 00:01 |
crc32 | how do I arase the tox environment? | 00:01 |
johnsom | The mock version changed, so I expect something changed there that isn't good/happy | 00:01 |
rm_you | tox -r | 00:01 |
rm_you | or just remove .tox | 00:01 |
rm_you | rm -rf .tox | 00:01 |
johnsom | +1 -r | 00:01 |
crc32 | self.assertTrue(status_message.checkhmac(sme, 'samplekey1')) | 00:01 |
crc32 | self.assertFalse(status_message.checkhmac(sme, 'samplekey2')) | 00:01 |
rm_you | johnsom: well, mocks across the board broke recently | 00:01 |
rm_you | but this particular change is *not a change*, or shouldn't be | 00:01 |
rm_you | mock >=1.1 | 00:02 |
crc32 | like the checkhmac function doesn't exist anymore tox is claiming its passed so I'm not trusting tox now. | 00:02 |
rm_you | is the exact same functionally as mock>=1.0 | 00:02 |
rm_you | as is the oslo.messaging line | 00:02 |
rm_you | i have a feeling something broke that is unrelated to the change | 00:02 |
johnsom | Hmm, it's 1.0 -> 1.0.1 | 00:03 |
johnsom | I haven't had time to look at what was in 1.0.1. | 00:03 |
rm_you | mock>=1.0 | 00:03 |
rm_you | to | 00:03 |
rm_you | mock>=1.1 | 00:03 |
rm_you | 1.0.1 is py26 only | 00:03 |
rm_you | which we don't even run | 00:03 |
rm_you | but which is, again, functionally the same thing | 00:04 |
rm_you | because of the way pip works | 00:04 |
johnsom | Ah, yes, right. Too much traveling today | 00:04 |
rm_you | look at how it broke | 00:04 |
rm_you | something about Oslotest | 00:04 |
rm_you | ah, also mock stuff | 00:05 |
rm_you | but i think it's the general "mocks were used wrong" issue | 00:05 |
rm_you | not the specific change | 00:05 |
rm_you | assert_called_once -> assert_called_once_with | 00:05 |
rm_you | yeah | 00:05 |
rm_you | same issue as neutron-lbaas | 00:05 |
rm_you | people used the wrong thing | 00:05 |
rm_you | and didn't spec their mocks | 00:05 |
rm_you | so they didn't notice | 00:05 |
johnsom | Yeah, we dropped support for 2.6. | 00:06 |
madhu_ak | btw, if I were to run single unit test (I usually run them in neutron-lbaas), I use this: source .tox/apiv2/bin/activate, and python -m subunit.run <path to unit test> | 00:08 |
crc32 | yea this is real cute. It complains about pep8 but acts like the tests passed. | 00:10 |
crc32 | is it subunit.run or subunit run | 00:11 |
madhu_ak | python -m subunit.run neutron_lbaas/tests/unit/test_agent_scheduler.py | 00:12 |
crc32 | its throwing up a bunch of binary charatcers | 00:15 |
crc32 | and failing to load. http://pastebin.com/ERBGiPdu | 00:15 |
crc32 | python -m subunit.run octavia/octavia/tests/unit/amphorae/backends/health_daemon/test_envelope.py <-- is this the write test invocation? | 00:18 |
madhu_ak | yep | 00:19 |
crc32 | so whats all the binary crap it throw at me? | 00:19 |
madhu_ak | oh :( | 00:19 |
madhu_ak | python -m testtools.run tests/unit/test_agent_scheduler.py | 00:20 |
madhu_ak | 00:20 | |
madhu_ak | can you try like this? | 00:20 |
madhu_ak | Ran 8 tests in 12.251s | 00:21 |
madhu_ak | OK | 00:21 |
madhu_ak | it got succeeded for me | 00:21 |
crc32 | thank you | 00:21 |
crc32 | Tests running... | 00:21 |
crc32 | ====================================================================== | 00:21 |
crc32 | ERROR: octavia.tests.unit.amphorae.backends.health_daemon.test_envelope.TestEnvelope.test_message_hmac | 00:21 |
crc32 | ---------------------------------------------------------------------- | 00:21 |
crc32 | Traceback (most recent call last): | 00:21 |
crc32 | File "octavia/tests/unit/amphorae/backends/health_daemon/test_envelope.py", line 29, in test_message_hmac | 00:21 |
crc32 | sme = status_message.encode(statusMsg, 'samplekey1') | 00:21 |
crc32 | AttributeError: 'module' object has no attribute 'encode' | 00:21 |
crc32 | Ran 1 test in 0.001s | 00:21 |
crc32 | FAILED (failures=1) | 00:21 |
crc32 | its failing like it should be now. | 00:22 |
madhu_ak | Is it the the expected failure? | 00:22 |
crc32 | yes I took out those functions but for some reason tox claims the code works and only complains about Pep8 | 00:23 |
madhu_ak | oh okay, what kind of errors you seeing? pep8 | 00:24 |
madhu_ak | dougwig: regarding the arguments in hooks: https://review.openstack.org/#/c/199781/ | 00:25 |
*** vivek-ebay has quit IRC | 00:34 | |
*** ajmiller has quit IRC | 00:39 | |
*** ajmiller has joined #openstack-lbaas | 00:39 | |
*** vivek-ebay has joined #openstack-lbaas | 00:41 | |
*** apuimedo has quit IRC | 00:42 | |
*** madhu_ak has quit IRC | 00:44 | |
*** mixos has joined #openstack-lbaas | 01:01 | |
*** vivek-ebay has quit IRC | 01:02 | |
*** crc32 has quit IRC | 01:03 | |
*** vivek-ebay has joined #openstack-lbaas | 01:06 | |
*** bradjones_ has joined #openstack-lbaas | 01:06 | |
*** bradjones_ has quit IRC | 01:06 | |
*** bradjones_ has joined #openstack-lbaas | 01:06 | |
*** bradjones has quit IRC | 01:06 | |
*** bradjones_ is now known as bradjones | 01:07 | |
*** chlong-afk has joined #openstack-lbaas | 01:15 | |
bank_ | Hi, I installed a new devstack with octavia enabled | 01:21 |
bank_ | how ever I am having trouble creating a pool | 01:22 |
*** bank_ has quit IRC | 01:36 | |
*** enikanorov has joined #openstack-lbaas | 02:17 | |
*** enikanorov2 has quit IRC | 02:25 | |
*** ajmiller_ has joined #openstack-lbaas | 02:40 | |
*** sbalukoff has quit IRC | 02:42 | |
*** vivek-ebay has quit IRC | 02:54 | |
*** mlavalle has quit IRC | 03:25 | |
*** rm_work|away is now known as rm_work | 03:31 | |
*** crc32 has joined #openstack-lbaas | 03:34 | |
*** vivek-ebay has joined #openstack-lbaas | 03:41 | |
*** vivek-eb_ has joined #openstack-lbaas | 03:44 | |
*** vivek-ebay has quit IRC | 03:46 | |
*** rm_work is now known as rm_work|away | 03:48 | |
*** madhu_ak has joined #openstack-lbaas | 03:53 | |
*** ganeshna has joined #openstack-lbaas | 04:06 | |
*** ganeshna has quit IRC | 04:30 | |
*** ganeshna has joined #openstack-lbaas | 04:32 | |
*** rm_work|away is now known as rm_work | 04:41 | |
*** bank_ has joined #openstack-lbaas | 04:42 | |
*** sbalukoff has joined #openstack-lbaas | 04:50 | |
*** ajmiller_ has quit IRC | 04:58 | |
*** crc32 has quit IRC | 04:58 | |
*** ganeshna has quit IRC | 05:00 | |
*** ganeshna has joined #openstack-lbaas | 05:07 | |
*** vivek-ebay has joined #openstack-lbaas | 05:11 | |
*** vivek-eb_ has quit IRC | 05:15 | |
*** ajmiller has quit IRC | 05:16 | |
*** madhu_ak has quit IRC | 05:45 | |
*** apuimedo has joined #openstack-lbaas | 05:52 | |
*** vivek-ebay has quit IRC | 05:58 | |
*** chlong-afk has quit IRC | 06:09 | |
*** rm_work is now known as rm_work|away | 06:17 | |
*** kiran-r has joined #openstack-lbaas | 06:36 | |
*** kiran-r has quit IRC | 06:58 | |
*** kiran-r has joined #openstack-lbaas | 07:01 | |
openstackgerrit | Evgeny Fedoruk proposed openstack/neutron-lbaas: Fixing Radware unit tests after mock module update https://review.openstack.org/201044 | 07:05 |
*** kiran-r has quit IRC | 07:08 | |
*** amotoki_ has joined #openstack-lbaas | 07:11 | |
*** ganeshna has quit IRC | 07:14 | |
*** bank_ has quit IRC | 07:36 | |
*** chlong-afk has joined #openstack-lbaas | 07:37 | |
*** woodster_ has quit IRC | 07:51 | |
*** mixos has quit IRC | 08:11 | |
*** amotoki_ has quit IRC | 08:22 | |
*** kiran-r has joined #openstack-lbaas | 08:29 | |
*** kiran-r has quit IRC | 08:29 | |
*** kiran-r has joined #openstack-lbaas | 08:31 | |
*** _kiran_ has joined #openstack-lbaas | 08:35 | |
*** kiran-r has quit IRC | 08:35 | |
*** _kiran_ has quit IRC | 08:40 | |
*** ganeshna has joined #openstack-lbaas | 08:49 | |
*** amotoki_ has joined #openstack-lbaas | 09:16 | |
*** [3]mikeymeitbual has quit IRC | 09:52 | |
*** ganeshna has quit IRC | 09:54 | |
*** ganeshna has joined #openstack-lbaas | 09:56 | |
*** kiran-r has joined #openstack-lbaas | 10:03 | |
openstackgerrit | Jian LI proposed openstack/neutron-lbaas: Support schedule loadbalancer manually https://review.openstack.org/201483 | 10:08 |
*** ganeshna has quit IRC | 10:22 | |
*** ganeshna has joined #openstack-lbaas | 10:29 | |
*** ganeshna_ has joined #openstack-lbaas | 10:39 | |
*** ganeshn__ has joined #openstack-lbaas | 10:41 | |
*** ganeshna has quit IRC | 10:42 | |
*** ganeshna has joined #openstack-lbaas | 10:43 | |
*** ganeshna_ has quit IRC | 10:44 | |
*** ganeshn__ has quit IRC | 10:45 | |
*** ganeshna_ has joined #openstack-lbaas | 10:46 | |
*** ganeshna has quit IRC | 10:49 | |
*** ganeshna has joined #openstack-lbaas | 10:50 | |
*** ganeshna_ has quit IRC | 10:52 | |
*** ganeshna has quit IRC | 10:55 | |
*** ganeshna has joined #openstack-lbaas | 10:57 | |
*** ganeshna has quit IRC | 11:09 | |
*** openstackgerrit has quit IRC | 11:09 | |
*** openstackgerrit has joined #openstack-lbaas | 11:10 | |
*** mixos has joined #openstack-lbaas | 11:48 | |
*** mixos has quit IRC | 11:51 | |
*** openstack has joined #openstack-lbaas | 12:12 | |
*** ig0r_ has joined #openstack-lbaas | 12:24 | |
*** mixos has joined #openstack-lbaas | 13:28 | |
*** bradjones has quit IRC | 13:41 | |
*** bradjones has joined #openstack-lbaas | 13:48 | |
*** bradjones has quit IRC | 13:48 | |
*** bradjones has joined #openstack-lbaas | 13:48 | |
*** ajmiller has joined #openstack-lbaas | 14:07 | |
*** Miouge has joined #openstack-lbaas | 14:09 | |
*** vivek-ebay has joined #openstack-lbaas | 14:10 | |
*** woodster_ has joined #openstack-lbaas | 14:20 | |
*** vivek-ebay has quit IRC | 14:22 | |
*** kbyrne has quit IRC | 14:23 | |
*** _kiran_ has joined #openstack-lbaas | 14:31 | |
*** kiran-r has quit IRC | 14:35 | |
*** kbyrne has joined #openstack-lbaas | 14:43 | |
*** _kiran_ is now known as kiran-r | 15:05 | |
*** ig0r_ has quit IRC | 15:10 | |
*** ig0r__ has joined #openstack-lbaas | 15:11 | |
*** ganeshna has joined #openstack-lbaas | 15:14 | |
*** ganeshna has quit IRC | 15:14 | |
*** ganeshna has joined #openstack-lbaas | 15:15 | |
*** ig0r_ has joined #openstack-lbaas | 15:18 | |
*** ig0r__ has quit IRC | 15:19 | |
*** ganeshna_ has joined #openstack-lbaas | 15:20 | |
*** ganeshna has quit IRC | 15:21 | |
*** ajmiller_ has joined #openstack-lbaas | 15:35 | |
*** madhu_ak has joined #openstack-lbaas | 15:36 | |
*** ajmiller has quit IRC | 15:38 | |
*** ajmiller_ is now known as ajmiller | 15:39 | |
*** mlavalle has joined #openstack-lbaas | 15:41 | |
*** ig0r__ has joined #openstack-lbaas | 15:41 | |
*** ig0r_ has quit IRC | 15:43 | |
*** Aish has joined #openstack-lbaas | 15:45 | |
*** KunalGandhi has joined #openstack-lbaas | 15:46 | |
*** minwang2 has joined #openstack-lbaas | 15:48 | |
*** minwang2 has left #openstack-lbaas | 15:48 | |
*** minwang2 has joined #openstack-lbaas | 15:49 | |
*** amotoki_ has quit IRC | 16:01 | |
*** mikeymeitbual has joined #openstack-lbaas | 16:07 | |
*** kiran-r has quit IRC | 16:21 | |
*** ganeshna_ has quit IRC | 16:25 | |
*** minwang2 has quit IRC | 16:29 | |
*** vivek-ebay has joined #openstack-lbaas | 16:30 | |
*** apuimedo has quit IRC | 16:32 | |
*** minwang2 has joined #openstack-lbaas | 16:38 | |
*** KunalGan_ has joined #openstack-lbaas | 16:45 | |
*** KunalGandhi has quit IRC | 16:47 | |
johnsom | FYI, I am taking a pass at updating Octavia for the mock stuff | 17:00 |
*** mgarza_ has joined #openstack-lbaas | 17:00 | |
*** jschwarz has joined #openstack-lbaas | 17:01 | |
*** mixos is now known as mixos-away | 17:08 | |
*** ajmiller has quit IRC | 17:16 | |
*** crc32 has joined #openstack-lbaas | 17:21 | |
*** jschwarz has quit IRC | 17:22 | |
*** bank_ has joined #openstack-lbaas | 17:23 | |
crc32 | were you comming into work rm_work? | 17:23 |
*** SumitNaiksatam has joined #openstack-lbaas | 17:23 | |
crc32 | rm_you rm_work which is the real adam? | 17:23 |
*** kiran-r has joined #openstack-lbaas | 17:28 | |
*** madhu_ak has quit IRC | 17:34 | |
*** minwang2 has quit IRC | 17:54 | |
*** openstackgerrit has quit IRC | 17:56 | |
*** openstackgerrit has joined #openstack-lbaas | 17:56 | |
*** minwang2 has joined #openstack-lbaas | 17:59 | |
*** KunalGan_ has quit IRC | 18:02 | |
*** apuimedo has joined #openstack-lbaas | 18:03 | |
*** fnaval has joined #openstack-lbaas | 18:11 | |
*** KunalGandhi has joined #openstack-lbaas | 18:22 | |
*** mixos-away is now known as mixos | 18:26 | |
*** chlong-afk has quit IRC | 18:30 | |
*** xgerman has quit IRC | 18:30 | |
crc32 | I'm working from home. Over half the bathrooms here are closed due to an "Emergency" | 18:35 |
*** rm_work|away is now known as rm_work | 18:36 | |
*** KunalGandhi has quit IRC | 18:45 | |
*** KunalGandhi has joined #openstack-lbaas | 18:47 | |
*** crc32 has quit IRC | 18:47 | |
*** openstackgerrit has quit IRC | 18:56 | |
*** openstackgerrit has joined #openstack-lbaas | 18:56 | |
*** minwang2 has quit IRC | 19:08 | |
*** KunalGandhi has quit IRC | 19:15 | |
*** Aish has quit IRC | 19:18 | |
*** enikanorov2 has joined #openstack-lbaas | 19:18 | |
*** mgarza_ has quit IRC | 19:37 | |
*** mgarza_ has joined #openstack-lbaas | 19:38 | |
*** KunalGandhi has joined #openstack-lbaas | 19:40 | |
*** sbalukoff has quit IRC | 19:41 | |
*** sbalukoff has joined #openstack-lbaas | 19:44 | |
*** _laco has joined #openstack-lbaas | 19:46 | |
*** mgarza_ has quit IRC | 19:49 | |
*** mgarza_ has joined #openstack-lbaas | 19:49 | |
*** chlong-afk has joined #openstack-lbaas | 19:49 | |
*** xgerman has joined #openstack-lbaas | 19:56 | |
*** mgarza_ has quit IRC | 19:57 | |
*** mgarza_ has joined #openstack-lbaas | 19:57 | |
*** kiran-r has quit IRC | 19:57 | |
*** minwang2 has joined #openstack-lbaas | 20:10 | |
*** Aish has joined #openstack-lbaas | 20:11 | |
*** madhu_ak has joined #openstack-lbaas | 20:30 | |
*** mgarza_ has quit IRC | 20:38 | |
*** mgarza has joined #openstack-lbaas | 20:39 | |
*** madhu_ak has quit IRC | 20:40 | |
*** mgarza has quit IRC | 20:42 | |
*** minwang2 has quit IRC | 20:54 | |
*** minwang2 has joined #openstack-lbaas | 20:56 | |
*** mixos is now known as mixos-away | 20:58 | |
*** minwang2 has quit IRC | 21:00 | |
*** rm_work is now known as rm_work|away | 21:01 | |
*** minwang2 has joined #openstack-lbaas | 21:04 | |
*** crc32 has joined #openstack-lbaas | 21:05 | |
*** mixos-away is now known as mixos | 21:07 | |
*** madhu_ak has joined #openstack-lbaas | 21:13 | |
*** minwang2 has quit IRC | 21:18 | |
*** madhu_ak has quit IRC | 21:18 | |
bank_ | when creating a LB o-cw throwing these errors | 21:19 |
bank_ | 1.NoReadyAmphoraeException: There are not any READY amphora available. 2.ComputeWaitTimeoutException: Waiting for compute to go active timeout. 3.ClientException: The server has either erred or is incapable of performing the requested operation 4.PlugNetworkException: Error plugging amphora 5.PlugVIPException: Error plugging amphora | 21:19 |
bank_ | is it because of vm coming up slowly ? | 21:19 |
bank_ | as I am using a vm to run the devstack | 21:20 |
*** Aish has quit IRC | 21:20 | |
*** sbalukoff has quit IRC | 21:26 | |
*** shakamunyi has joined #openstack-lbaas | 21:58 | |
*** mlavalle has quit IRC | 22:09 | |
*** sbalukoff has joined #openstack-lbaas | 22:19 | |
*** SumitNaiksatam has quit IRC | 22:23 | |
*** enikanorov2 has quit IRC | 22:23 | |
*** mixos has quit IRC | 22:41 | |
dougwig | fyi, i will be at the meetup friday *only*. sorry for the last minute change. | 23:11 |
bank_ | any idea about the creds for amphora ? | 23:29 |
*** bitblt has joined #openstack-lbaas | 23:31 | |
*** shakamunyi has quit IRC | 23:36 | |
*** barra204 has joined #openstack-lbaas | 23:36 | |
*** apuimedo has quit IRC | 23:41 | |
bank_ | as I see in the code we are just waiting for 10s (amp_active_wait_sec) for the amphora to come up | 23:42 |
bank_ | is it enough ? | 23:42 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!