Monday, 2016-02-15

*** unlaudable has joined #openstack-stable02:48
*** unlaudable has quit IRC02:52
*** unlaudable has joined #openstack-stable02:54
*** unlaudable has quit IRC03:34
*** dims has joined #openstack-stable04:28
*** dims has quit IRC04:30
*** david-lyle has quit IRC05:21
*** sileht has quit IRC07:03
*** SergeyLukjanov has quit IRC07:03
*** SergeyLukjanov has joined #openstack-stable07:04
*** sileht has joined #openstack-stable07:05
*** unlaudable has joined #openstack-stable07:24
*** targon has joined #openstack-stable07:35
*** rcernin has joined #openstack-stable08:34
*** unlaudable has quit IRC09:01
*** rcernin has quit IRC09:17
*** rcernin has joined #openstack-stable09:17
*** crinkle_ has joined #openstack-stable09:27
*** crinkle has quit IRC09:28
*** bapalm has quit IRC09:28
*** Nakato has quit IRC09:28
*** Nakato has joined #openstack-stable09:29
*** bapalm has joined #openstack-stable09:29
*** apevec has joined #openstack-stable09:37
*** unlaudable has joined #openstack-stable09:39
*** e0ne has joined #openstack-stable09:59
*** ihrachys has joined #openstack-stable11:09
*** dims_ has joined #openstack-stable12:42
*** dims_ has quit IRC13:33
*** dims has joined #openstack-stable13:33
*** doug-fish has joined #openstack-stable13:45
*** dims has quit IRC13:53
*** dims has joined #openstack-stable13:57
*** dims has quit IRC14:00
*** dims has joined #openstack-stable14:02
*** doug-fish has quit IRC14:20
*** dims has quit IRC14:28
*** mriedem has joined #openstack-stable14:30
*** doug-fish has joined #openstack-stable14:36
*** dims has joined #openstack-stable14:36
*** doug-fish has quit IRC14:40
*** eharney has joined #openstack-stable14:50
*** sigmavirus24_awa is now known as sigmavirus2414:52
*** dims has quit IRC14:59
*** doug-fish has joined #openstack-stable15:08
*** dims has joined #openstack-stable15:10
*** doug-fish has quit IRC15:13
*** doug-fish has joined #openstack-stable15:25
*** targon has quit IRC15:26
*** doug-fish has quit IRC15:30
*** doug-fish has joined #openstack-stable15:30
*** doug-fish has quit IRC15:35
*** eharney has quit IRC15:44
*** eharney has joined #openstack-stable15:59
*** doug-fish has joined #openstack-stable16:11
*** haypo has joined #openstack-stable16:13
*** unlaudable has quit IRC16:13
haypomriedem, tonyb : hi. dims told me that you may be able to help me to understand why https://review.openstack.org/#/c/256443/ cannot be merged16:14
mriedemhaypo: http://logs.openstack.org/43/256443/1/check/gate-tempest-dsvm-neutron-src-oslo.service/d5a5a68/logs/apache/keystone.txt.gz#_2016-02-15_03_10_31_25281416:16
mriedemContextualVersionConflict: (oslo.service 0.9.1.dev6 (/opt/stack/new/oslo.service), Requirement.parse('oslo.service>=0.12.0'), set(['oslo.messaging']))16:16
mriedemhttps://bugs.launchpad.net/oslo.service/+bug/1529594/comments/216:17
openstackLaunchpad bug 1529594 in oslo.service "[stable/liberty] gate-tempest-dsvm-neutron-src-oslo.service devstack fails on role list/add" [Undecided,New]16:17
haypomriedem: sorry, but i don't understand this version conflict16:18
haypomriedem: what can i do to unblock oslo.service?16:18
haypo(i'm in the oslo meeting)16:19
mriedemhaypo: pip freeze shows that oslo.messaging 3.0.0 is installed16:19
mriedemoslo.messaging==3.0.016:19
mriedemb/c that's the highest version allowed in upper-constraints on stable/liberty16:19
mriedemhttps://github.com/openstack/requirements/blob/stable/liberty/upper-constraints.txt#L19516:19
mriedemhaypo: and o.m 3.0.0 requires oslo.service>=0.12.016:20
mriedemhttps://github.com/openstack/oslo.messaging/blob/3.0.0/requirements.txt#L1316:20
mriedemhaypo: but the version being installed in that job run for oslo.service is from source, which i guess is 0.9.116:20
mriedemthis seems like a problem16:22
mriedemhttp://logs.openstack.org/43/256443/1/check/gate-tempest-dsvm-neutron-src-oslo.service/d5a5a68/logs/devstacklog.txt.gz#_2016-02-15_03_07_05_17116:22
mriedem+ local branch=master16:22
mriedemit looks like it's trying to checkout the oslo.service master branch rather than stable/liberty16:22
mriedembasically it seems like the gate-tempest-dsvm-neutron-src- job is busted for stable branches16:28
haypomriedem: oops :)16:29
mriedemmaybe the branch doesn't matter since it should just be pip installing what's been checked out from gerrit16:30
mriedemthe latest released commit in stable/liberty is this: https://github.com/openstack/oslo.service/commit/fad5b04d5933ae3e08b8991d18dc51089cf9b8d116:32
mriedemand it was released in 0.9.016:32
mriedemso it looks like pbr is picking that version since that's the minimum released commit version (i'm speculating pbr behavior at this point)16:33
mriedemif we did a 0.12.1 release of oslo.service from stable/liberty then it would probably fix the issue16:33
mriedemb/c pbr would i think pick 0.12.2.dev as the next version to pip install16:33
mriedemwe'd probably need lifeless to take a look16:34
mriedemmaybe that job just shouldn't be running on stable branches, idk16:34
mriedemalternatively we could lower the upper-constraint on oslo.messaging from 3.0.0 to 2.5.016:38
mriedemwhich lines oslo.messaging up with the requirement for oslo.service from stable/liberty g-r (oslo.service>=0.7.0 # Apache-2.0)16:38
haypodims: maybe that job just shouldn't be running on stable branches, idk" was it your suggestion for this issue?16:38
mriedemi think that's actually the better solution16:38
apevecwhat is the purpose of -src- job?16:39
apevecbut even w/o understanding that, ack to remove it from stable16:39
*** eharney has quit IRC16:39
mriedemapevec: to see if the change being proposed will break anything once released16:40
mriedemlike is it a backward incompatible change16:40
mriedemhonestly i think upper-constraints in this case is probably just wrong, at least in the real world16:41
mriedemb/c g-r says oslo.service>=0.7.0 is cool, and upper-constraints on oslo.messaging is 3.0.0, but those don't install together (if you had oslo.service 0.7.0) because o.m 3.0.0 requires o.service>=0.12.016:42
mriedempeople would probably argue that upper-constraints has oslo.messaging 3.0.0 and oslo.service 1.1.0 so you should use oslo.service 1.1.016:42
mriedemanyway, as it stands, the src job is borked16:43
mriedemand the master branch oslo changes are testing src against stable/liberty (non-voting) and those are also borked16:43
mriedemfor similar reasons16:43
haypomriedem: sorry, the version confict looks too complex for me :) would you mind to propose a patch to remove the gate on liberty, since it looks like you understand well the issue?16:43
mriedemyeah i can do that16:44
haypomriedem: nice, thanks :)16:44
mriedemi'm wondering if it's happening on other oslo libraries in stable/liberty too16:44
haypomriedem: FYI the issue seems quite annoying, at least two dev noticed random grenade failures failed from this bug (fixed by my change)16:44
mriedemoslo.db was ok https://review.openstack.org/#/c/274357/16:44
haypomriedem: the bug is quite complex and completly random...16:45
mriedemsure, not being able to land fixes in stable is annoying...16:45
haypomriedem: haha, true16:45
*** armax has joined #openstack-stable16:47
*** rcernin has quit IRC16:48
*** dims_ has joined #openstack-stable17:03
*** dims has quit IRC17:04
*** ihrachys has quit IRC17:06
mriedemhere is the project-config change https://review.openstack.org/#/c/280328/17:07
*** doug-fish has quit IRC17:09
*** doug-fish has joined #openstack-stable17:15
*** e0ne has quit IRC17:16
*** doug-fish has quit IRC17:19
*** ihrachys has joined #openstack-stable17:22
*** ihrachys has quit IRC17:23
*** ihrachys has joined #openstack-stable17:23
*** rcernin has joined #openstack-stable17:24
*** doug-fish has joined #openstack-stable17:38
*** crinkle_ is now known as crinkle17:40
*** ihrachys has quit IRC17:52
*** e0ne has joined #openstack-stable18:13
*** eharney has joined #openstack-stable18:25
*** doug-fis_ has joined #openstack-stable18:58
*** doug-fi__ has joined #openstack-stable18:59
*** doug-f___ has joined #openstack-stable19:00
*** doug-fish has quit IRC19:00
*** doug-fis_ has quit IRC19:03
*** doug-fi__ has quit IRC19:04
*** doug-f___ has quit IRC19:16
*** doug-fish has joined #openstack-stable19:16
*** doug-fish has quit IRC19:16
*** doug-fish has joined #openstack-stable19:17
*** doug-fish has quit IRC19:26
*** doug-fish has joined #openstack-stable19:26
*** e0ne has quit IRC19:56
*** sigmavirus24 is now known as sigmavirus24_awa19:58
*** e0ne has joined #openstack-stable19:59
*** shwetaap has joined #openstack-stable20:00
shwetaapHello!. I have an approved patch on neutron stable/kilo - https://review.openstack.org/#/c/273274/20:04
shwetaapBut Jenkins complains20:04
shwetaaphttp://logs.openstack.org/74/273274/2/check/gate-neutron-dsvm-api/e8993aa/console.html20:04
shwetaaphttp://logs.openstack.org/74/273274/2/check/gate-neutron-dsvm-api/e8993aa/console.html#_2016-02-15_17_02_43_314 | 2016-02-15 17:02:43.201 |     ep.require(installer=self.fetch_build_egg)20:05
shwetaaphttp://logs.openstack.org/74/273274/2/check/gate-neutron-dsvm-api/e8993aa/console.html#_2016-02-15_17_02_43_314 | 2016-02-15 17:02:43.202 |   File "/opt/stack/new/neutron/.tox/api/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2396, in require20:05
shwetaaphttp://logs.openstack.org/74/273274/2/check/gate-neutron-dsvm-api/e8993aa/console.html#_2016-02-15_17_02_43_314 | 2016-02-15 17:02:43.204 |     items = working_set.resolve(reqs, env, installer)20:05
shwetaaphttp://logs.openstack.org/74/273274/2/check/gate-neutron-dsvm-api/e8993aa/console.html#_2016-02-15_17_02_43_315 | 2016-02-15 17:02:43.205 |   File "/opt/stack/new/neutron/.tox/api/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 833, in resolve20:05
shwetaaphttp://logs.openstack.org/74/273274/2/check/gate-neutron-dsvm-api/e8993aa/console.html#_2016-02-15_17_02_43_315 | 2016-02-15 17:02:43.207 |     raise VersionConflict(dist, req).with_context(dependent_req)20:05
shwetaaphttp://logs.openstack.org/74/273274/2/check/gate-neutron-dsvm-api/e8993aa/console.html#_2016-02-15_17_02_43_315 | 2016-02-15 17:02:43.208 | pkg_resources.ContextualVersionConflict: (fixtures 1.2.0 (/opt/stack/new/neutron/.tox/api/lib/python2.7/site-packages), Requirement.parse('fixtures>=1.3.0'), set(['testtools']))20:05
shwetaapI thought changin the fixtures version would fix the issue - so i have another patch out for it20:05
shwetaaphttps://review.openstack.org/#/c/280277/20:05
shwetaapBut that seems to have the same issue as well20:06
shwetaapAny thoughts on how to fix it?20:06
*** sigmavirus24_awa is now known as sigmavirus2420:25
*** e0ne has quit IRC20:29
mriedemshwetaap: tonyb has a bug reported against fixtures for that, let me see if i can find it20:32
mriedemshwetaap: https://bugs.launchpad.net/python-fixtures/+bug/154298420:33
openstackLaunchpad bug 1542984 in Python Fixtures "fixtures 1.2.0 isn't compatible with testtools 2.0.0" [Undecided,New]20:33
mriedemshwetaap: also listed in https://etherpad.openstack.org/p/stable-tracker which is where we track stuff like this20:33
mriedemalways a good place to check when you hit weird issues on stable branches20:33
*** apevec has quit IRC20:34
mriedemstable team meeting in #openstack-meeting-4 in 25 minutes20:35
*** apevec has joined #openstack-stable20:47
shwetaapmriedem: Thanks!. So this patch with fixtures>=1.3.1 may cause additional issues  https://review.openstack.org/#/c/280277/?20:48
shwetaapwe need to find a different solution?20:48
mriedemshwetaap: well, for one thing, you can't update requirements in projects that get their requirements managed globally in the global-requirements file20:48
mriedemshwetaap: tonyb has proposed a solution in the bug, but lifeless has to get on board with it20:49
mriedembasically we need to cap testtools in an older version of fixtures and release that so kilo can use it20:49
*** agireud has quit IRC20:50
*** apevec has left #openstack-stable20:50
*** agireud has joined #openstack-stable20:51
tonybshwetaap: Like mriedem says we have a good idea how to fix it, I'll push on it some today.20:59
shwetaapmrieden, tonyb: Thanks!21:00
mriedemmeeting time21:00
tonybmriedem: I don't know how you do all the stable stuff and nova core.21:28
mriedemi just do both equally bad21:29
tonybmriedem: :D21:29
* dims_ disagrees with mriedem 21:29
tonybdims_: /me too21:30
mriedemhow do i manage to watch so much tv and still raise a child you ask? must practice21:30
dims_:) go matt!21:30
mriedem*much21:30
tonybmriedem: If you like kids shows you can easily do both at the same time.21:30
mriedem'like kids shows'21:31
tonybmriedem: my son is now ok to watch the star wars films ( 4->6 ) so that's been nice21:31
mriedemheh, i've been working on that since she was like 221:31
tonybmriedem: :)21:31
mriedemwe finally got through return of the jedi a few months ago21:31
mriedemthe rancor was questionable21:31
tonybmriedem: Yeah.21:32
dims_we ended up watching planet of the apes (mark wahlberg) a couple of days ago with my boys (9 and 12)21:33
dims_they seemed to get hooked to the time travel angle :)21:33
mriedemmaya has a fear of apes, so that wouldn't go over well21:33
mriedemapes and bears21:33
dims_ah21:33
mriedembut not mutated ninja turtles21:33
dims_haha21:34
tonyb:)21:34
mriedemoh, and the t-rex from jurassic park wasn't a problem because she believes the dinosaurs died off like a few years ago or something21:34
mriedemso no longer a threat21:35
tonybJoseph is mad keen on dino's but I'm still waiting a bit on that one21:35
* tonyb is affraid to opne dims_'s "pycrypto vs pycryptodome" thread21:36
* tonyb saves it for post 5th coffee21:37
dims_haha21:37
*** smcginnis has joined #openstack-stable22:26
*** armax has quit IRC22:36
*** doug-fish has quit IRC22:42
*** doug-fish has joined #openstack-stable22:48
*** doug-fish has quit IRC22:51
*** doug-fish has joined #openstack-stable22:52
*** doug-fish has quit IRC22:54
*** doug-fish has joined #openstack-stable22:55
*** mriedem is now known as mriedem_away22:57
*** doug-fish has quit IRC23:00
*** rcernin has quit IRC23:05
*** sigmavirus24 is now known as sigmavirus24_awa23:25
*** shwetaap has quit IRC23:36
*** dims_ has quit IRC23:41
*** dims has joined #openstack-stable23:57

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