Earlier  
Posted Nick Remark
#openstack-nova - 2020-04-21
15:45:17 stephenfin Ah, you're right. My mistake.
15:45:52 bauzas <scratch, scratch> => git commit => tox -ereleasenotes (and take a coffee cup, it'll take a while to generate)
15:45:59 stephenfin I've another point left about putting the URLs between the bullet points too /o\
15:46:08 stephenfin They render really weirdly
15:46:55 stephenfin Because it's rendering as multiple <ul>s instead of one <ul> with multiple <li>s
15:47:58 bauzas stephenfin: weirdo, look at what the tox target generates : http://paste.openstack.org/raw/792482/
15:48:18 bauzas (open it as an HTML file)
15:48:44 stephenfin yeah, see how there are multiple <ul> tags?
15:48:51 stephenfin there should only be one
15:50:21 bauzas ok, I can fix this, I see your point
15:50:36 stephenfin bauzas: actually, you can do this
15:50:40 stephenfin http://rst.ninjs.org/#LSBgSGVsbG9gX18KCiAgLi4gX186IFRlc3QKCi0gV29ybGQKLSBUZXN0
15:50:44 stephenfin just indent the links
15:50:58 bauzas yeah I was thinking on indenting, not dedenting
15:51:07 bauzas hence the <ul> tags
15:51:20 stephenfin cool
15:51:28 bauzas if I wasn't using the bullets but an ordered list, we would get 1. 1. 1.
15:51:36 stephenfin exactly
15:52:04 bauzas just verifying that's the only asked nit besides your rewordings
15:56:24 bauzas stephenfin: b/c I don't wanna get a stylistic -1 again, you okay with me saying : to configure `read-only` access
15:56:34 bauzas and not : to configure "read-only" access
15:56:45 bauzas (using italics instead of brakets)
15:56:46 stephenfin *read-only* would be better
15:56:56 bauzas bold, dude ?
15:56:59 bauzas man, you're gross
15:57:04 stephenfin nope, that's **read-only**
15:57:20 stephenfin this ain't markdown, my man
15:57:42 stephenfin :P
15:57:44 stephenfin single backticks mean default role
15:57:51 stephenfin which is configurable
15:58:03 stephenfin in most environment it defaults to italics
15:58:28 bauzas ah-ha I see
15:58:55 bauzas there is a good reason why it's named **Sphinx** AFAICT
15:59:14 bauzas they could have subtitled it 'old greek'
16:00:12 bauzas (and while we speak, it's building relnotes locally...
16:05:24 bauzas (still building)
16:05:27 bauzas hold my beer
16:06:03 bauzas mgoddard: I haven't forgotten you, but my time was on working for release notes
16:06:10 stephenfin we're going to need to start compressing release notes again at some point
16:06:22 stephenfin like we did for e.g. mitaka
16:06:24 bauzas stephenfin: that's not the problem
16:06:24 mgoddard bauzas: I've been waiting long enough, I can wait a little longer :)
16:06:35 bauzas stephenfin: it does scan all my local branches
16:06:58 bauzas this is what takes a while
16:07:07 bauzas I should drop the local stable branches, that's it
16:08:35 stephenfin nah, it'll drag them in from the remote
16:08:37 stephenfin iirc
16:09:17 bauzas maybe, that's been a while I haven't really looked deep at the reno code itself
16:09:24 bauzas (Ocata I think)
16:14:41 openstackgerrit Sylvain Bauza proposed openstack/nova master: Ussuri 21.0.0 prelude section https://review.opendev.org/721548
16:14:48 bauzas wow
16:14:56 bauzas 5 mins to upload, thanks Netflix
16:32:43 openstackgerrit Elod Illes proposed openstack/nova stable/rocky: WIP: libvirt: check job status for VIR_DOMAIN_EVENT_SUSPENDED_MIGRATED event https://review.opendev.org/711233
17:05:22 ajitha hi all, we have running a openstack CI for cinder.. with ubuntu 18.04 and py3.6... After this commit https://opendev.org/openstack/nova/commit/f1e448d6729f674101b34b08e3c5e95fd8f75770 , our CI/CD pipeline is getting break in devstack with following error "pip._vendor.pkg_resources.ContextualVersionConflict: (oslo.policy 3.0.3 (/usr/local/lib/python3.6/dist-packages), Requirement.parse('oslo.policy>=3.1.0'), {'nova'}).."
17:06:06 ajitha how to suppress this from local.conf?
17:07:12 ajitha or any method to send suppress_deprecation_warnings=True from local.conf
17:08:53 stephenfin ajitha: Are you using system packages?
17:09:06 stephenfin Python packages, that is
17:09:58 ajitha i am using python packages mostly...you are asking for oslo.policy?
17:10:31 stephenfin Yeah, is this just a bare Ubuntu 18.04 host with DevStack on it?
17:10:53 stephenfin I'm checking whether you've installed oslo.policy from pip or apt
17:11:32 ajitha yes bare ubuntu 18.04 with devstack
17:11:42 ajitha from pip only not from apt
17:11:57 stephenfin okay, can you paste the full traceback (paste.openstack.org)
17:12:00 stephenfin ?
17:12:49 ajitha sure
17:12:56 ajitha thanks
17:13:04 openstackgerrit Ghanshyam Mann proposed openstack/nova master: Fix the followup comment of policy doc https://review.opendev.org/721322
17:21:50 ajitha stephenfin: http://paste.openstack.org/show/792492/
17:22:21 ajitha paste.openstack didnt allow to paste the complete log..
17:22:26 gmann stephenfin: fixed the comment in this to compare those. merging the same in original patch now https://review.opendev.org/721322
17:25:16 stephenfin ajitha: I suspect you're hitting https://github.com/pypa/pip/issues/988
17:26:27 stephenfin and unfortunately I don't have any easy answers, you need something to install oslo.config >= 3.1.0 before 3.0.3 gets installed
17:26:36 ajitha manual devstack execution works fine with an error throwing as ERROR: nova 20.1.0.dev1681 has requirement oslo.policy>=3.1.0, you'll have oslo-policy 3.0.3 which is incompatible... but it skips that and devstack gets completed. and while executing devstack-gate jenkins job, devstack gets error at the above point
17:27:33 stephenfin We're not hitting that in the nova gate so I suspect it's something to do with a plugin that's installing a package that depends on oslo.config < 3.1.0
17:27:43 stephenfin a plugin in your CI environment, that is
17:28:48 stephenfin the folks on #openstack-infra might be more help; they're well used to dealing with pip's brokenness /o\
17:29:00 ajitha thank you.
17:29:08 openstackgerrit Ghanshyam Mann proposed openstack/nova master: Add docs and releasenotes for BP policy-defaults-refresh https://review.opendev.org/720129
17:29:10 ajitha it works with py3.6 too??
17:30:01 stephenfin the gate? yeah, I don't think this is a py3.6 issue
17:30:11 stephenfin it's a pip issue, I'd say
17:30:28 openstackgerrit Ghanshyam Mann proposed openstack/nova master: Add docs and releasenotes for BP policy-defaults-refresh https://review.opendev.org/720129
17:32:28 ajitha stephenfin : thanks. The error is throwing in the manual devstack execution(./stack.sh) but it skips and complete the devstack.. In case of devstack-gate, it just stops at that point
18:15:54 gmann stephenfin: gibi this is ready now - https://review.opendev.org/#/c/720129/11
#openstack-nova - 2020-04-22
02:43:35 gmann seems like nova-next is failing on multiple network issue on new stable rescue tests. pushed the fix on tempest side - https://review.opendev.org/#/c/721767/
03:49:02 openstackgerrit sean mooney proposed openstack/nova master: Delete ARQs by UUID if Cyborg ARQ bind fails. https://review.opendev.org/716186
04:53:08 openstackgerrit sean mooney proposed openstack/nova master: cyborg evacuate support https://review.opendev.org/715326
05:00:12 openstackgerrit sean mooney proposed openstack/nova master: cyborg evacuate support https://review.opendev.org/715326
05:00:12 openstackgerrit sean mooney proposed openstack/nova master: Delete ARQs by UUID if Cyborg ARQ bind fails. https://review.opendev.org/716186
07:26:37 bauzas good morning Nova
07:33:39 aarents 'morning
08:22:02 openstackgerrit Sylvain Bauza proposed openstack/nova master: Ussuri 21.0.0 prelude section https://review.opendev.org/721548
08:22:20 bauzas last iteration of prelude ^
09:57:24 openstackgerrit Merged openstack/os-resource-classes master: Cleanup py27 support https://review.opendev.org/719351
10:42:28 gibi lyarwood: hi! do you still plan to have a stable release this week?
10:43:39 kashyap lyarwood: I have this open, will check this today: https://zuul.opendev.org/t/openstack/build/8011a4c1b08e4b9d921660d0c5c2505d
10:43:45 kashyap The virt-preview + Q35 job failure
10:47:15 zigo elod: Should you recheck https://review.opendev.org/711233 ?
10:47:26 zigo The errors look like unrelated.

Earlier   Later