Thursday, 2023-01-19

gmannkopecmartin: can you check this https://review.opendev.org/c/openstack/tempest/+/87097400:24
opendevreviewGhanshyam proposed openstack/tempest master: Fix creation of requested creds within the same project  https://review.opendev.org/c/openstack/tempest/+/87101805:26
opendevreviewGhanshyam proposed openstack/tempest master: DNM: for test  https://review.opendev.org/c/openstack/tempest/+/87101905:40
*** soniya is now known as soniya29|rover05:41
*** jpena|off is now known as jpena08:05
opendevreviewLajos Katona proposed openstack/tempest master: Move test_dhcp_port_status_active from neutron-tempest-plugin  https://review.opendev.org/c/openstack/tempest/+/82444009:09
*** soniya29|rover is now known as soniya29|rover|brb09:44
opendevreviewMartin Kopec proposed openstack/tempest-stress master: Job update for Antelope cycle  https://review.opendev.org/c/openstack/tempest-stress/+/87106209:52
opendevreviewMartin Kopec proposed openstack/tempest-stress master: Job update for Antelope cycle  https://review.opendev.org/c/openstack/tempest-stress/+/87106209:53
opendevreviewMartin Kopec proposed openstack/karma-subunit-reporter master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/karma-subunit-reporter/+/87106309:56
opendevreviewMartin Kopec proposed openstack/eslint-config-openstack master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/eslint-config-openstack/+/87106409:58
opendevreviewMartin Kopec proposed openstack/devstack-tools master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/devstack-tools/+/87106610:01
opendevreviewMartin Kopec proposed openstack/devstack-plugin-nfs master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/devstack-plugin-nfs/+/87107210:10
opendevreviewMerged openstack/devstack stable/zed: [OVN] Ensure socket files are absent in init_ovn  https://review.opendev.org/c/openstack/devstack/+/87050510:11
opendevreviewMartin Kopec proposed openstack/bashate master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/bashate/+/87107410:14
opendevreviewMartin Kopec proposed openstack/os-performance-tools master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/os-performance-tools/+/87107510:18
opendevreviewMartin Kopec proposed openstack/coverage2sql master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/coverage2sql/+/87107610:20
*** soniya29|rover|brb is now known as soniya29|rover11:25
opendevreviewMartin Kopec proposed openstack/tempest-stress master: Job update for Antelope cycle  https://review.opendev.org/c/openstack/tempest-stress/+/87106215:03
opendevreviewMartin Kopec proposed openstack/os-performance-tools master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/os-performance-tools/+/87107515:07
opendevreviewDan Smith proposed openstack/tempest master: WIP: Chunked GET request support  https://review.opendev.org/c/openstack/tempest/+/87100015:18
dansmithgmann: gibi: ^ that now works locally for me15:18
dansmithI need to survey which and what places need tests added15:21
opendevreviewMartin Kopec proposed openstack/tempest-stress master: Job update for Antelope cycle  https://review.opendev.org/c/openstack/tempest-stress/+/87106216:02
opendevreviewMerged openstack/bashate master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/bashate/+/87107416:12
opendevreviewMerged openstack/devstack-tools master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/devstack-tools/+/87106616:15
opendevreviewMerged openstack/coverage2sql master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/coverage2sql/+/87107616:23
opendevreviewGhanshyam proposed openstack/tempest master: DNM: for test  https://review.opendev.org/c/openstack/tempest/+/87101916:26
opendevreviewMerged openstack/eslint-config-openstack master: Switch testing to Antelope testing runtime  https://review.opendev.org/c/openstack/eslint-config-openstack/+/87106416:26
gibidansmith: added to my queue16:57
dansmithgibi: still needs tests, I'm hoping gmann can say "yes this approach is reasonable" before I spend too much time on it16:57
dansmithor maybe kopecmartin 16:57
gmanndansmith: sure, I will check it in an hr.16:59
dansmiththx16:59
gibiack, I will check it tomorrow :)17:05
*** jpena is now known as jpena|off17:30
dansmithit's passing what I expect, but looks like a bunch of other failures in other places17:30
opendevreviewDan Smith proposed openstack/tempest master: Chunked GET request support  https://review.opendev.org/c/openstack/tempest/+/87100018:47
abdiWe are consistently seeing failures of volume attachment to instances in our CI.  The consistent signature is the volume is successfully created, transitioned to Available, transitioned to Reserved as it is getting ready to be attached, transitioned to Attaching, but never transitioned to Attached.  Has anyone else seen this behavior??  18:54
abdiWe are testing with Master (oslo.messaging 14.1.0, Nova 26.1.0.dev141,  os-brick 6.3.1, Python 3.8.10).  18:54
abdiCorrection: I should have said... Never transitioned to "In Use" instead of Attached above.  18:57
gmanndansmith: direction looks good to me and that is right way for such large response data. one question about closing the http connection https://review.opendev.org/c/openstack/tempest/+/871000/3/tempest/api/compute/admin/test_volume.py#6819:16
gmannas you tested and it worked fine I think I am missing something but want to clarify my doubt 19:17
dansmithgmann: gah, I forgot to finish that. it doesn't break anything it just leaks a (single in this case) pool worker, but yeah19:18
dansmithI was just trying to get it working and never did the close, thanks for the reminder19:18
gmanndansmith: ok. in that case we need to download the chunked data before closing so that we can pass it to upload API19:19
dansmithgmann: we need to close it after we do the feed, which means either in the test, or somehow in tearDown19:20
gmannnot sure if in teardown will work as we are making another request in same test case19:20
dansmithgmann: it will work, but do you mean it's not ideal? it would just leave one pool worker unable to make more requests until it's closed19:21
gmanndansmith: yeah. but if that does not cause any issue it is fine in teardown. because closing it test need test to download the compleet data which is again oom19:21
gmannissue19:22
dansmithgmann: the test can do it after it's done, we just have to remember19:22
dansmithhaving the test close it is the easiest, is that okay?19:22
gmannok. and we can document in service client if you are requesting with chunked=True then remember to close it in test itself19:23
dansmithack, I will19:23
gmannthanks 19:23
gmannabdi: we have seen volume status transition error many time especially in centos stream jobs but have not looked into the exact logs for your error. good to check in nova and cinder logs where it stuck19:25
opendevreviewDan Smith proposed openstack/tempest master: Chunked GET request support  https://review.opendev.org/c/openstack/tempest/+/87100019:28
dansmithgmann: ^19:28
dansmithoops, I missed your other comment19:29
gmanndansmith: that is ok, you can update if you re-spin it otherwise we can do in followup19:32
dansmithgmann: I don't think it's a huge rush, but look at my reply (when you can) - it's not so easy19:32
gmanndansmith: yeah, we can skip the resp data/header to log but as it need little refactoring in log_request, we can do separately. not blocker for this change 19:35
gmannI am ok the way you prefer19:36
dansmithokay19:36
opendevreviewMerged openstack/tempest-stress master: Job update for Antelope cycle  https://review.opendev.org/c/openstack/tempest-stress/+/87106220:02
opendevreviewGhanshyam proposed openstack/tempest master: Fix creation of requested creds within the same project  https://review.opendev.org/c/openstack/tempest/+/87101821:04
opendevreviewSofia Enriquez proposed openstack/devstack-plugin-nfs master: Runs all encrypted scenario tests  https://review.opendev.org/c/openstack/devstack-plugin-nfs/+/74290521:09
abdigmann: We have check cinder and nova logs.  Cinder appears to do all ok.  In Nova, other than Rabbit AMQP connection resets, there's nothing else that points to root cause.  This is the single issue failing all of our CI runs and it does not point to our cinder driver so we're perplexed.21:17
*** arxcruz|ruck is now known as arxcruz21:50
opendevreviewDan Smith proposed openstack/tempest master: Chunked GET request support  https://review.opendev.org/c/openstack/tempest/+/87100022:56

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