Tuesday, 2023-08-08

opendevreviewMerged openstack/tempest master: Setting Tempest run concurrency to 4 for a few jobs  https://review.opendev.org/c/openstack/tempest/+/89068900:07
opendevreviewMerged openstack/tempest master: Skip test_image_tasks_create() for bug 2030527  https://review.opendev.org/c/openstack/tempest/+/89068700:29
opendevreviewMerged openstack/devstack master: Add SERVICE_REPORT_INTERVAL knob  https://review.opendev.org/c/openstack/devstack/+/89043905:05
opendevreviewwangjiaqi proposed openstack/hacking master: Use py3 as the default runtime for tox  https://review.opendev.org/c/openstack/hacking/+/89072506:40
opendevreviewsean mooney proposed openstack/devstack master: [WIP] add support for zswap and ksmtuned  https://review.opendev.org/c/openstack/devstack/+/89069311:29
opendevreviewsean mooney proposed openstack/devstack master: [WIP] add support for zswap and ksmtuned  https://review.opendev.org/c/openstack/devstack/+/89069312:34
opendevreviewMerged openstack/tempest master: Remove nova-network tests  https://review.opendev.org/c/openstack/tempest/+/89047113:04
opendevreviewBrian Haley proposed openstack/devstack master: Fix $LOGDIR owner to be stack.stack  https://review.opendev.org/c/openstack/devstack/+/89079213:08
opendevreviewLukas Piwowarski proposed openstack/tempest master: Skip test_list_no_containers when pre-prov creds are used  https://review.opendev.org/c/openstack/tempest/+/89079814:06
opendevreviewLukas Piwowarski proposed openstack/tempest master: Skip test_list_no_containers when pre-prov creds are used  https://review.opendev.org/c/openstack/tempest/+/89079814:06
dansmithkopecmartin: around by chance?14:10
kopecmartindansmith: yes, what's up?14:11
dansmithso I'm trying to debug this tempest test14:11
dansmithand I swear it looks like _run_cleanups() starts running in the middle of the test, and somewhat in parallel to continued operation of the test14:11
dansmithhttps://5248ae6d6484a440a059-bda51eedb42181063c5344e0473d3d05.ssl.cf2.rackcdn.com/888470/1/gate/nova-multi-cell/2964990/testr_results.html14:11
dansmithopen that test failure and search for _run_cleanups()14:12
dansmith(the test not the class)14:12
dansmiththat first instance of _run_cleanups() happens right after we do a get on the server14:13
dansmithand then right after it does a post for tokens, we see a post to do the rebuild14:13
dansmithand then further down we see an ssh validation14:13
dansmithso I just realized..14:14
dansmithmaybe this is the test class rebuilding the server after the test is done?14:14
dansmithit just so happens to be a rebuild test, so maybe that's where I went off the rails14:14
dansmither, wait, do we rebuild in between? _recreate_server() actually creates a new one...14:17
kevkoi would like to ask also ... is this test passing upstream ? 14:17
kevkohttps://paste.openstack.org/show/bOCkBdzQyhB9F1XrRPUr/14:17
dansmithkevko: it should be easy to verify, but yes:14:20
dansmithtest_server_detach_rules[compute,id-be615530-f105-437a-8afe-ce998c9535d9,image,network,slow,volume]14:20
dansmithpass14:20
kopecmartindansmith: hm, the server is recreated in the setup (if the server isn't found) and in the resource_setup .. _test_rebuild_server should only rebuild it .. although I see that we run validation twice (once as part of the test and once in _test_rebuild_server)14:23
dansmithkopecmartin: that log looks to me like _run_cleanups() is doing a rebuild of the server14:24
dansmithit's doing a POST to /action, and that post is a rebuild14:24
dansmithI can't even find _run_cleanups() .. is that part of tempest or testtools or something?14:24
dansmithmaybe something has done an addCleanup() that is doing a rebuild somewhere?14:25
kevkodansmith: can u share a link to some config/test results in zuul so i can check my configs ? 14:26
dansmithkevko: the link I posted above has that test passing14:26
kevkodansmith: can i see somehow configs ? 14:27
dansmithkopecmartin: oooh, I may have found it14:27
dansmithkevko: go up the directory tree from that log report14:27
dansmithkopecmartin:             self.addCleanup(self._rebuild_server_and_check, old_image, server)14:28
dansmithseveral tests do that14:28
kopecmartinyes, only if the image is different than the original image14:31
kopecmartini'm going through the code and i don't see anything suspicious (except the extra validation) yet14:32
kopecmartin_run_cleanups is a mystery though, i don't see such function anywhere o.O14:33
dansmithI think that must be something in testtools that runs all your addCleanup() hooks14:33
dansmithbut yeah, I think what's going on is that we schedule a rebuild of the test server and then we later call another cleanup hook to detach the volume, but it can't (yet)14:34
dansmithwe should probably run the detach first so we're not rebuilding the server with the volume attached anyway14:35
kevkodansmith: can i check somehow what roles users have ? 14:36
dansmithkopecmartin: yeah so those two volume wait traces at the bottom match what we schedule in attach_volume() so that's the deal14:38
dansmithso detaching first might make that more likely to succeed, but the problem is likely just the flakiness involved in volume detach14:39
dansmithkevko: tempest normally creates users for each test, and the roles that user has would be "member" AFAIK for anything that doesn't use an admin client14:42
kopecmartin#startmeeting qa15:00
opendevmeetMeeting started Tue Aug  8 15:00:36 2023 UTC and is due to finish in 60 minutes.  The chair is kopecmartin. Information about MeetBot at http://wiki.debian.org/MeetBot.15:00
opendevmeetUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.15:00
opendevmeetThe meeting name has been set to 'qa'15:00
kevkodansmith: okay, and why do you have service_token_roles_required = False 15:00
kopecmartin#link https://wiki.openstack.org/wiki/Meetings/QATeamMeeting#Agenda_for_next_Office_hours15:01
kevkodansmith: because there should be = True 15:01
kopecmartinagenda ^15:01
fricklero/15:01
lpiwowaro/15:01
kevkodansmith: as per https://docs.openstack.org/cinder/latest/configuration/block-storage/service-token.html15:01
lpiwowarIs gerrit down or is it only problem on my side? 15:02
kopecmartinkevko: where is that? i don't see such setting in tempest or devstack 15:03
kopecmartinlpiwowar: seems down15:04
opendevreviewLukas Piwowarski proposed openstack/tempest master: Skip test_list_no_containers when pre-prov creds are used  https://review.opendev.org/c/openstack/tempest/+/89079815:04
kevkokopecmartin: https://5248ae6d6484a440a059-bda51eedb42181063c5344e0473d3d05.ssl.cf2.rackcdn.com/888470/1/gate/nova-multi-cell/2964990/controller/logs/screen-c-api.txt << ctrl+f    service_token_roles_required15:04
kevko^^ this should be True as per https://docs.openstack.org/cinder/latest/configuration/block-storage/service-token.html 15:04
fricklergerrit look fine to me15:05
kevkothat's the reason why upstream  tempest.scenario.test_server_volume_attachment.TestServerVolumeAttachmentScenario.test_server_detach_rules is passing ...15:05
kevkoin my env where i am setting service_token_roles_required = True it's failing ...but i got 401 ...so i think the test is broken ....15:05
lpiwowarfrickler: it works me now too15:06
fricklerkevko: so maybe devstack/tempest need to adapt the deployment and then fix the test. can we go on with the meeting now, though?15:07
kopecmartinkevko: the setting seems to be coming from keystone middleware ..15:07
fricklerlikely default=false for backwards compat15:07
kopecmartini'll try dig deeper, but now let's start with the meeting 15:07
kopecmartinyeah, will need to find some patches .. maybe it's something we forgot to enable in tempest/devstack 15:08
kopecmartin#topic Announcement and Action Item (Optional)15:08
kopecmartinnone from my side15:09
kopecmartin#topic Bobcat Priority Items progress15:09
kopecmartin#link https://etherpad.opendev.org/p/qa-bobcat-priority15:09
* kopecmartin checking the doc15:09
kopecmartinseems i need to follow up on15:10
kopecmartin#link https://review.opendev.org/c/openstack/devstack/+/55893015:10
kopecmartinthere have been recent changes15:10
fricklerI updated the venv name according to dansmith's suggestion15:11
fricklerwhich actually I had commented upon 5 years ago, too ;)15:11
fricklerthen there's still the discussion whether to symlink only specific binaries into /usr/local or add the complete venv into the path15:12
fricklerI would like us to proceed with what we have now, but there also hasn't been a lot of reviews15:13
kopecmartinyeah, let me revisit that right after this meeting, personally i'd rather merge this sooner than later as it may broke someone else and we'll be aproaching another release soon15:17
fricklerin particular adding the bookworm job would be good, ack15:19
kopecmartinand as the jobs passed, it mostly works ,the rest can be figured out later15:19
kopecmartin#topic Gate Status Checks15:20
kopecmartin#link https://review.opendev.org/q/label:Review-Priority%253D%252B2+status:open+(project:openstack/tempest+OR+project:openstack/patrole+OR+project:openstack/devstack+OR+project:openstack/grenade)15:20
kopecmartinnothing there15:20
kopecmartinany urgent patches to review?15:20
lpiwowarCan somebody please take a look at this patch: https://review.opendev.org/c/openstack/tempest/+/890653 ? It's about skipping tests that do user password update when miminum_password_age is set in keystone.conf.15:20
lpiwowarBut it is probably not urgent kopecmartin. 15:21
kopecmartinlpiwowar: right, it's on my list15:21
lpiwowarkopecmartin: thanks!15:21
kopecmartin#topic Bare rechecks15:21
kopecmartin#link https://etherpad.opendev.org/p/recheck-weekly-summary15:22
kopecmartindue to all the rechecks we made last week we quite pushed the percentage down :D15:22
kopecmartin#topic Periodic jobs Status Checks15:22
kopecmartinperiodic stable full15:22
kopecmartin#link https://zuul.openstack.org/builds?pipeline=periodic-stable&job_name=tempest-full-yoga&job_name=tempest-full-xena&job_name=tempest-full-zed&job_name=tempest-full-2023-115:22
kopecmartinperiodic stable slow15:22
kopecmartin#link https://zuul.openstack.org/builds?job_name=tempest-slow-2023-1&job_name=tempest-slow-zed&job_name=tempest-slow-yoga&job_name=tempest-slow-xena15:22
kopecmartinperiodic extra tests15:22
kopecmartin#link https://zuul.openstack.org/builds?job_name=tempest-full-2023-1-extra-tests&job_name=tempest-full-zed-extra-tests&job_name=tempest-full-yoga-extra-tests&job_name=tempest-full-xena-extra-tests15:22
kopecmartinperiodic master15:22
kopecmartin#link https://zuul.openstack.org/builds?project=openstack%2Ftempest&project=openstack%2Fdevstack&pipeline=periodic15:22
opendevreviewAshley Rodriguez proposed openstack/devstack-plugin-ceph master: Remote Ceph with cephadm  https://review.opendev.org/c/openstack/devstack-plugin-ceph/+/87674715:23
kopecmartintempest-all timeouts .. it seems it's ran with concurrency == 615:25
kopecmartin#link https://zuul.openstack.org/builds?job_name=tempest-all&project=openstack%2Ftempest&project=openstack%2Fdevstack&pipeline=periodic&skip=015:25
kopecmartinhm15:25
kopecmartin#topic Distros check15:27
kopecmartincs-915:27
kopecmartin#link https://zuul.openstack.org/builds?job_name=tempest-full-centos-9-stream&job_name=devstack-platform-centos-9-stream&skip=015:27
kopecmartinfedora15:27
kopecmartin#link https://zuul.openstack.org/builds?job_name=devstack-platform-fedora-latest&skip=015:27
kopecmartindebian15:27
kopecmartin#link https://zuul.openstack.org/builds?job_name=devstack-platform-debian-bullseye&skip=015:27
kopecmartinfocal15:27
kopecmartin#link https://zuul.opendev.org/t/openstack/builds?job_name=devstack-platform-ubuntu-focal&skip=015:27
kopecmartinrocky15:27
kopecmartin#link https://zuul.openstack.org/builds?job_name=devstack-platform-rocky-blue-onyx15:27
kopecmartinopenEuler15:27
kopecmartin#link https://zuul.openstack.org/builds?job_name=devstack-platform-openEuler-22.03-ovn-source&job_name=devstack-platform-openEuler-22.03-ovs&skip=015:27
fricklerF36 is eol, I think we need to drop that from 2023.1, too15:29
kopecmartinright, i've just removed that from the agenda15:29
kopecmartinfrickler: should we also delete the job from stable/2023.1?15:30
kopecmartini see it failing there15:30
frickleryes, that's what I just said ... or tried to15:31
kopecmartin:D sorry 15:31
kopecmartini read it but didn't understand it cause i was thinking about the agenda ... ah15:32
* kopecmartin needs another coffee 15:32
kopecmartinso yes, i agree, will you propose a patch or should I?15:32
fricklerI can do the patch15:32
kopecmartinprefect, thanks!15:33
gmanno/15:33
kopecmartino/15:33
lpiwowaro/15:34
kopecmartingreat, so that was fedora15:34
kopecmartinthis will help with centos915:34
kopecmartin#link https://review.opendev.org/q/Icd99f467d47aaafaaf3ee8f2a3c4da08842cb67215:34
kopecmartinthe rest of the distros look ok it seems15:35
kopecmartin#topic Sub Teams highlights15:36
kopecmartinChanges with Review-Priority == +115:36
kopecmartin#link https://review.opendev.org/q/label:Review-Priority%253D%252B1+status:open+(project:openstack/tempest+OR+project:openstack/patrole+OR+project:openstack/devstack+OR+project:openstack/grenade)15:36
kopecmartinnothing there15:36
kopecmartin#topic Open Discussion15:36
kopecmartinanything for the open discussion?15:36
lpiwowarI added the skip for the object storage test we talked about last week: https://review.opendev.org/c/openstack/tempest/+/890798 ... We can start the discussion there. 15:37
sean-k-mooneyare there any know issue with grenede failing in keyston upgrade15:37
gmannsean-k-mooney: not afaik15:37
gmannit was all good till yesterday, have not checked today yet15:38
sean-k-mooneyok cause i have seen this 3 times today on one of my patches 15:38
sean-k-mooneyhttps://zuul.opendev.org/t/openstack/build/e4ecb12b5ea74a669f6e0ff59f478ad5/log/controller/logs/grenade.sh_log.txt#543015:38
kopecmartinlpiwowar: does it relate to this https://bugs.launchpad.net/tempest/+bug/2028671 ?15:38
lpiwowarkopecmartin: yes:)15:38
sean-k-mooneyoh never mind15:38
lpiwowarI will add the Related-Bug: 15:39
gmannok, have not seen that. but I will monitor 15:39
sean-k-mooneyits related to my patch15:39
opendevreviewLukas Piwowarski proposed openstack/tempest master: Skip test_list_no_containers when pre-prov creds are used  https://review.opendev.org/c/openstack/tempest/+/89079815:39
gmannjust FYI, after nova-network test removal, I am removing the glance v1 APIs tests too #link https://review.opendev.org/q/topic:remove-glance-v1-tests15:40
opendevreviewAshley Rodriguez proposed openstack/devstack-plugin-ceph master: Remote Ceph with cephadm  https://review.opendev.org/c/openstack/devstack-plugin-ceph/+/87674715:40
gmannit need some updates in plugins side also for config as well as scenario manager logic so doing those first15:40
kopecmartingmann: thanks, i added the topic to my review list15:41
gmannwith that i found there are many plugins still has their scenario manager copy, did not we removed all those ? or they are just missing15:41
gmannlpiwowar: I think you did the most of the work in that ^^15:41
gmannkopecmartin: thanks 15:41
gmannI can check if we can remove them but just want to check if there is any reason we did not do that while doing it for otherplugins15:42
lpiwowargmann: I think that it was rpopelka if I remember correctly. 15:42
kopecmartinnot all the patches are merged gmann15:42
kopecmartin#link https://review.opendev.org/q/topic:tempest-scenario-manager-cleanup15:42
kopecmartinor maybe we missed some15:42
gmannlpiwowar: ohk15:42
gmannkopecmartin: nice, thanks I will check those 15:43
gmannwatcher and barbican are the one and changes are not merged. 15:43
gmannthis explain it.15:43
kopecmartindansmith: what do we wanna do with that test_rebuild_server_with_volume_attached test?15:44
gmannkopecmartin: is it failing consistently ?15:44
lpiwowargmann: We recently hit an issue with this in barbican-tempest-plugin regarding the removal of scenario manager: https://review.opendev.org/c/openstack/barbican-tempest-plugin/+/88935415:44
kopecmartingmann: no, it doesn't seem so15:45
gmannlpiwowar: ohk, will check this change. thanks for info15:45
ykarelwrt rebuild test is this related to issue Host key for server does not match?15:45
ykarelrecently noticed in some of neutron jobs15:45
lpiwowarThe failure was caused by victoria job using master barbican-tempest-plugin. I'm trying to fix this here:  https://review.opendev.org/c/openstack/barbican-tempest-plugin/+/89078415:45
gmannnot sure, I think we fixed that test right ?15:46
kopecmartingmann: to save you some time, the barbican issue is that they use master plugin on victoria branch ... missing dependencies etc15:46
gmannkopecmartin: I see, which they can use old plugin as victoria is too old for tempest master and barbican-tempest-plugin to use15:46
gmannI will have a look into that15:46
kopecmartinykarel: seems not .. i started looking into that just an hour ago and started with only this https://5248ae6d6484a440a059-bda51eedb42181063c5344e0473d3d05.ssl.cf2.rackcdn.com/888470/1/gate/nova-multi-cell/2964990/testr_results.html15:47
ykarelkopecmartin, ack i was talking about https://cfc27c554a994f35be4e-76bf72ffc642f12cb8e7d8393148d522.ssl.cf5.rackcdn.com/874797/41/gate/neutron-ovn-tempest-ipv6-only-ovs-release/8162e79/testr_results.html15:48
gmannkopecmartin: I think we added wait for rebuild to finish there but need to check15:48
ykareland as per opensearch i see that in multiple jobs and times15:48
opendevreviewLukas Piwowarski proposed openstack/tempest master: Skip test_list_no_containers when pre-prov creds are used  https://review.opendev.org/c/openstack/tempest/+/89079815:48
gmannkopecmartin: we do wait for server to be active after rebuild https://github.com/openstack/tempest/blob/3e996dc6cefd5ad7136001a6eb846a9255cce961/tempest/api/compute/servers/test_server_actions.py#L15815:50
opendevreviewsean mooney proposed openstack/devstack master: add support for zswap and ksmtuned  https://review.opendev.org/c/openstack/devstack/+/89069315:51
gmannkopecmartin: dansmith: I think what happening here is that rebuild is stuck and teardown try to detach volume and fail. 15:52
kopecmartingmann: yes, the issue seemed to be about a race between attached volumes15:52
gmannwe can make teardown little bit more smart to handle that15:52
kopecmartingmann: btw, we run validation twice there, once in _test_rebuild_server and once at the end of the test 15:52
gmannkopecmartin: yeah, I think we can remove until there is any reason whoami-rajat knows15:53
gmannlet me have a look into this in my noon and will update teardown also15:55
kopecmartinack, sounds good, thanks15:55
kopecmartingmann: btw, we're feeling with frickler adventurous and would move this forward - https://review.opendev.org/c/openstack/devstack/+/55893015:56
gmannkopecmartin: ok, i have not checked it actually but I think you and dansmith are looking into it.15:57
gmannbut do not wait for me, i might not be able to check it for  this week or so15:57
kopecmartinokey15:58
kopecmartin#topic Bug Triage15:58
kopecmartin#link https://etherpad.openstack.org/p/qa-bug-triage-bobcat15:58
kopecmartinnew numbers there ^^15:58
kopecmartintime is almost up15:58
kopecmartinso if there isn't anything else , we can call it an hour15:58
kopecmartinthanks everyone 15:58
kopecmartin#endmeeting15:58
opendevmeetMeeting ended Tue Aug  8 15:58:56 2023 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)15:58
opendevmeetMinutes:        https://meetings.opendev.org/meetings/qa/2023/qa.2023-08-08-15.00.html15:58
opendevmeetMinutes (text): https://meetings.opendev.org/meetings/qa/2023/qa.2023-08-08-15.00.txt15:58
opendevmeetLog:            https://meetings.opendev.org/meetings/qa/2023/qa.2023-08-08-15.00.log.html15:58
fricklerthx kopecmartin 15:59
lpiwowarthanks kopecmartin15:59
gmannthanks everyone15:59
kopecmartinkevko: let's get to your issue now16:01
dansmithgmann: yeah, something like that, but I'm not sure the rebuild is actually stuck or else we would fail waiting for active or something, but I'm not sure16:04
gmanndansmith: yeah, will fix that in teardown not to fail in that case. 16:05
kopecmartinkevko: so the job which uses service_token_roles_required = false and probably shouldn't is nova-multi-cell defined in nova ... to get things moving, i'd suggest to edit the job, file a bug in tempest that the test is failing if that setting is true .. then we'll have a way of testing the fix in tempest16:16
sean-k-mooneyi tought that option had been removed form oslo16:31
sean-k-mooneyand not the service token role was always enforced16:31
sean-k-mooneyhuh i tought that got removed https://docs.openstack.org/nova/latest/configuration/config.html#keystone_authtoken.service_token_roles_required16:33
sean-k-mooneydid that get reverted?16:33
sean-k-mooneyi guess not https://opendev.org/openstack/keystonemiddleware/src/branch/master/keystonemiddleware/auth_token/_opts.py#L17516:38
sean-k-mooneyi tought seting htat to true and eventually remvoing it was part of the cinder volume cve fix16:38
whoami-rajatgmann, not 100% sure about the test since that's not the one i added, this one has an image backed server with a volume attached to it17:06
whoami-rajatbased on the failure we are trying to detach a volume when the instance state is rebuilding, i think we need a waiter there until the VM becomes active17:07
gmannwhoami-rajat: ah right. no issue, I think I misread the test name17:07
whoami-rajatregarding validation, i agree that it's done twice17:08
whoami-rajatlooking at the failure here, https://5248ae6d6484a440a059-bda51eedb42181063c5344e0473d3d05.ssl.cf2.rackcdn.com/888470/1/gate/nova-multi-cell/2964990/testr_results.html17:08
gmannwhoami-rajat: we do that but t seems somewhere server is stuck and test teardown is trying to detach volume, we can handle that in teardown17:08
whoami-rajatok, got it17:09
dansmithgmann: kopecmartin frickler: thoughts on getting this in so we can hopefully diagnose if some of our service timeouts are related to apache pool exhaustion? https://review.opendev.org/c/openstack/devstack/+/89052617:17
gmanndansmith: agree, +217:19
opendevreviewGhanshyam proposed openstack/tempest master: Ignore 409 error in detach volume cleanup  https://review.opendev.org/c/openstack/tempest/+/89082118:02
gmanndansmith: kopecmartin ^^ what you think of this for test_rebuild_server_with_volume_attached failure18:18
dansmithgmann: will that help? I guess I assumed if the volume is wedged the instance won't actually go away18:19
gmanndansmith: that we handle in teardown, if anything wrong with server and cannot be recover we delete the server and create new one18:20
dansmithright, but will the delete actually complete if we're stuck?18:20
gmanndansmith: https://github.com/openstack/tempest/blob/3e996dc6cefd5ad7136001a6eb846a9255cce961/tempest/api/compute/servers/test_server_actions.py#L8018:20
gmanndansmith: ohk, so we can either wait for server to be in active before detach  and if nothing comes up then force delete ?18:21
dansmithgmann: I'm not saying we shouldn't do what you propose, I'm just not sure it will help18:22
dansmithif the instance is stuck in DELETING waiting for the volume or something, a test that does a server list will still see it right?18:22
dansmithI guess my point is..18:22
gmanndansmith: I got your point, you are right that it will fail in delete server because it has volume attach18:22
dansmithI feel like we need to get to the bottom of these volume issues18:22
gmannit is server task stuck in rebuilding state18:23
dansmithprobably because it can't detach the volume itself to complete the rebuild right?18:24
gmannhumm, possible 18:24
dansmithgmann: tbh I'm not sure that rebuilding in between tests is really the best plan anyway18:24
dansmithI'm sure it was intended to be faster, but I dunno, seems like it's asking for this sort of problem18:24
gmanndansmith: but test is for rebuild in between only. that is what you mean or something during teardown/setup we are doing ?18:39
dansmithgmann: we're doing a rebuild of the class server so that the next test sees it as based on the original image right?18:40
gmanndansmith: ah, right18:46
gmannwe should do that with test level server18:46
dansmithright, so the test should be testing rebuild, but the cleanup should just delete and re-create it if it needs to18:49
dansmiththat said, I think it's possible the delete will fail if the volume is hung anyway,18:49
dansmithbut less rebuilding in cleanup would be better anyway18:49
gmanndansmith: agree, let me update that18:51
dansmithslaweq: sorry if I should know this, but do you have stats on the recheck "reason" ?19:06
dansmithI'm wondering if we could calculate what percentage of the rechecks have "volume" or "cinder" in the reason19:07
slaweq@dansmith no, I still didn't make this in my script19:24
dansmithslaweq: okay19:32
opendevreviewGhanshyam proposed openstack/tempest master: Improve test_rebuild_server_with_volume_attached  https://review.opendev.org/c/openstack/tempest/+/89082120:02
opendevreviewMerged openstack/devstack stable/2023.1: Use RDO official CloudSIG mirrors for C9S deployments  https://review.opendev.org/c/openstack/devstack/+/89012023:40

Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!