Thursday, 2020-03-26

*** ociuhandu has joined #openstack-cinder00:24
*** ociuhandu has quit IRC00:30
*** ociuhandu has joined #openstack-cinder00:31
*** ociuhandu has quit IRC00:36
*** tosky has quit IRC00:52
*** zhanglong has joined #openstack-cinder01:10
*** Liang__ has joined #openstack-cinder01:17
*** n-saito has joined #openstack-cinder01:28
*** ociuhandu has joined #openstack-cinder01:58
*** ociuhandu has quit IRC02:02
*** brinzhang_ has joined #openstack-cinder02:08
*** zhanglong has quit IRC02:39
openstackgerritKazumasa Nomura proposed openstack/cinder master: Add Hitachi Block Storage Driver  https://review.opendev.org/71283202:44
*** zhanglong has joined #openstack-cinder02:49
*** pcaruana has quit IRC02:54
*** gkadam has joined #openstack-cinder03:03
*** pcaruana has joined #openstack-cinder03:07
openstackgerritLiang Fang proposed openstack/devstack-plugin-open-cas master: Add tempest tests to zuul  https://review.opendev.org/71377203:18
*** zhanglong has quit IRC03:58
*** ykarel|away is now known as ykarel04:08
*** udesale has joined #openstack-cinder04:47
*** ajitha has joined #openstack-cinder05:09
*** udesale has quit IRC05:10
*** udesale has joined #openstack-cinder05:12
*** ajitha has quit IRC05:28
*** zhanglong has joined #openstack-cinder05:37
*** rcernin has quit IRC05:40
*** rcernin has joined #openstack-cinder05:41
*** rcernin has quit IRC05:41
*** rcernin has joined #openstack-cinder05:42
*** rcernin has quit IRC05:42
*** rcernin has joined #openstack-cinder05:47
*** ykarel is now known as ykarel|meeting06:01
*** rcernin has quit IRC06:02
*** raunak12 has quit IRC06:02
*** rcernin has joined #openstack-cinder06:02
*** rcernin has quit IRC06:05
*** rcernin has joined #openstack-cinder06:05
*** ruffian_sheep has joined #openstack-cinder06:14
ruffian_sheepwhoami-rajat : Hi,are u online?06:15
whoami-rajatruffian_sheep, Hey Morning06:15
ruffian_sheepwhoami-rajat : I have some doubts about this use case. tempest.api.compute.admin.test_volume_swap: TestMultiAttachVolumeSwap.test_volume_swap_with_multiattach. It tests normally, but fails during cleanup. If I manually created additional virtual machines and volumes (not related to this use case). It can be successfully executed.06:17
whoami-rajatruffian_sheep, what's the error?06:18
whoami-rajatcan you provide a traceback here paste.openstack.org06:18
ruffian_sheepwhoami-rajat : I found the following error in n-cpu: Delete attachment failed for attachment c91de0de-9a9f-48fa-9752-c15ce6dfe28f. Error: Volume attachment could not be found with filter: attachment_id = c91de0de-9a9f-48fa-9752-c15ce6dfe28f. ( HTTP 404) (Request-ID: req-3f7db26a-61ca-4559-a4cf-d4b280acd8f7) Code: 404:06:19
ruffian_sheepcinderclient.exceptions.NotFound: Volume attachment could not be found with filter: attachment_id = c91de0de-9a9f-48fa-9752-c15ce6dfe28f . But in c-vol I have seen this link after the disconnect operation has ended06:19
ruffian_sheepwhoami-rajat : srue06:19
ruffian_sheepsure06:19
*** raunak12 has joined #openstack-cinder06:21
whoami-rajatcan you also check cinder attachment-list (requires 3.27 MV min) after the cleanup failed if there is any residue attachments06:22
ruffian_sheepwhoami-rajat : http://paste.openstack.org/show/791170/06:23
whoami-rajatruffian_sheep, the main issue i see here is with the iscsi connection06:24
whoami-rajatruffian_sheep, iscsiadm stderr output when getting sessions: iscsiadm: No active sessions.06:25
ruffian_sheepwhoami-rajat : 3.27 MV? It is normal for me to check the status of related links in the database.06:25
whoami-rajatruffian_sheep, cinder --os-volume-api-version 3.27 attachment-list06:26
ruffian_sheepwhoami-rajat : This use case was executed normally when tested on the stein version, but I don't know what the specific problem is here06:26
ruffian_sheepcinder --os-volume-api-version 3.27 attachment-list+----+-----------+--------+-----------+| ID | Volume ID | Status | Server ID |+----+-----------+--------+-----------++----+-----------+--------+-----------+06:27
ruffian_sheepwhoami-rajat : The operation here I saw whether the link between volume1 and server1 will be disconnected, and the link is still provided normally. No disconnection is performed, that is, the relevant iscsi operation is performed by nova. Our cinder driver did not disconnect the physical link. The environment I set up is all in one06:29
ruffian_sheepwhoami-rajat : You can see that the error iscsiadm: No records found started to appear after the execution of volume1 and server1 disconnected. The following Volume attachment could not be found with filter: attachment_id = c91de0de-9a9f-48fa-9752-c15ce6dfe28f. (HTTP 404). It appears after executing volume1 and server2 disconnect.06:33
whoami-rajatruffian_sheep, so there is one case i can think of right now06:35
ruffian_sheepwhoami-rajat : why06:37
ruffian_sheep?06:38
ruffian_sheepwhoami-rajat : No, I took a look at the time. Both errors occurred after the volume1 and server1 \ server2 disconnected.06:39
whoami-rajatruffian_sheep, when two volumes are attached to a server and one gets detached, it shouldn't break the connection with the host since one volume is still connected06:40
whoami-rajatruffian_sheep, is this case handled incase of your driver?06:41
ruffian_sheepwhoami-rajat : The link between the storage and the host is not broken, as long as the upper layer has not issued the volume-related disconnect instruction. The physical connection between the storage and the host is always there06:45
whoami-rajatruffian_sheep, what do you mean by upper layer?06:48
ruffian_sheepwhoami-rajat : cinder.manager06:48
ruffian_sheepor anything else06:48
*** ykarel|meeting is now known as ykarel06:49
whoami-rajatruffian_sheep, are you testing with the latest code which you've in review ? https://review.opendev.org/#/c/711388/6/cinder/volume/drivers/macrosan/driver.py06:51
whoami-rajatruffian_sheep, i see this condition handled now but it wasn't there previously06:51
ruffian_sheepwhoami-rajat : In my understanding, the cinder driver only needs to provide a physical link. As for the establishment and interruption of the iscsi session, Nova is responsible. The execution of the physical link is normal. There is no other operation when no physical interrupt instruction is issued.06:52
ruffian_sheepwhoami-rajat : yes06:52
ruffian_sheepwhoami-rajat : what do u mean  this condition handled now but it wasn't there previously?06:53
*** raunak12 has quit IRC06:57
openstackgerritLiang Fang proposed openstack/devstack-plugin-open-cas master: Add tempest tests to zuul  https://review.opendev.org/71377206:58
whoami-rajatruffian_sheep, yes, during volume detach nova calls the terminate connection method in the driver07:00
whoami-rajatruffian_sheep, so we need to check when the terminate connection is called then if the volume has multiple attachments, it shouldn't do the terminate call07:02
ruffian_sheepwhoami-rajat : yes,So if you talk about iscsi session related issues, then I doubt if it is caused by any changes made by Nova. Because on this part, the cinder driver itself only needs to provide a physical link. The current physical link is provided normally.07:03
*** ociuhandu has joined #openstack-cinder07:03
ruffian_sheepwhoami-rajat : http://paste.openstack.org/show/791171/07:04
ruffian_sheepwhoami-rajat : You can see that this is performed normally, which is a problem during the cleaning process. At this time it is indeed necessary to perform the relevant disconnection operation.07:05
*** ociuhandu has quit IRC07:07
whoami-rajatruffian_sheep, i'm really not familiar with the tempest way of cleanup, but first the volumes should be detached and then deleted and IIUC in your case the volume is in in-use when the delete operation is performed right?07:09
ruffian_sheepwhoami-rajat : No. . . After the entire process is performed, the volumes still exist. And I can directly delete two volumes, both of which are available.07:11
ruffian_sheepwhoami-rajat : The use case performed a detach operation, but did not perform a delete operation. It seems that because of the problem, it did not delete the volume. At this time, the volume is available and can be deleted directly.07:13
ruffian_sheepwhoami-rajat : I rebuilt ussuri many times, and only this use case has always failed. And if I manually create additional virtual machines and volumes and attach them. This use case will pass. But this doesn't make sense, as these two are irrelevant to the use case. And errors will also appear. But the test case can pass.07:14
whoami-rajatruffian_sheep, ok, so as from the code i see, nova calls terminate connection and then calls cinder's detach method07:20
whoami-rajatruffian_sheep, the cinder's detach method removes the attachment record from db and sets the volume status to available07:21
ruffian_sheepyes07:21
*** dpawlik has joined #openstack-cinder07:22
whoami-rajatruffian_sheep, i need to look more into it to exactly see the issue, meanwhile you can debug the c-vol logs as half of the operations are performed there07:26
whoami-rajatruffian_sheep, and since these tests are running in other CIs as well, i don't think the tests have issue07:26
whoami-rajatruffian_sheep, still the swap multiattach volume test might be rarely run, but i can think atleast one of the CIs passing it successfully07:27
ruffian_sheepwhoami-rajat : Now the network may be bad again. I plan to execute it the day before yesterday and upload the relevant logs for you to see.07:28
ruffian_sheepwhoami-rajat : I'm not sure about this, but in the stein environment, the cinder driver passed without any problems.07:29
whoami-rajatruffian_sheep, it will be good if we can see the failure in the CI, currently the logs aren't available there07:31
whoami-rajatruffian_sheep, the issue might be unrelated, how many times did you try the test and see this issue?07:32
ruffian_sheepwhoami-rajat : It should have been 20 times, and the environment has been rebuilt six or seven times. There are also seven or eight times to perform a complete test, and there have been dozens of times to execute this test case alone.07:34
whoami-rajatruffian_sheep, then it doesn't seem unrelated, the logs would help to see through the issue, i can't think of particular reasons on top of my head07:35
openstackgerritLiang Fang proposed openstack/devstack-plugin-open-cas master: Add tempest tests to zuul  https://review.opendev.org/71377207:36
ruffian_sheepwhoami-rajat : I can send you the latest log link first, and there are three or four other errors, which are caused by environmental space issues. I have cleaned up and rebuilt the environment and tested this test case, no problem. There will still be problems with this.07:39
*** xuanyd has joined #openstack-cinder07:49
xuanydwhoami-rajat: hi, the patch has bean update, please recheck it, thanks.https://review.opendev.org/#/c/705876/07:50
*** vishalmanchanda has joined #openstack-cinder07:56
*** sapd1 has joined #openstack-cinder07:57
ruffian_sheepwhoami-rajat : http://120.77.149.115/88/711388/6/check/cinder-isicsi-driver/f332004/08:00
ruffian_sheepwhoami-rajat : I pulled the relevant logs here08:00
brinzhang_whoami-rajat: the latest patch update hemna's comments, covered the test case, of course lose your +2, if you have time pls review again08:01
brinzhang_hemna: hope you can check again ^^08:02
brinzhang_zuul failed because of the openstack-docs issue, now it's ok because the fixed patch (https://review.opendev.org/#/c/714207/1) merged08:03
*** rosmaita has quit IRC08:06
*** guilhermesp has quit IRC08:06
*** rosmaita has joined #openstack-cinder08:09
whoami-rajatxuanyd, brinzhang_ as far as i remember i mentioned a case and my comment wasn't replied or addressed, so i never gave a +208:13
whoami-rajatruffian_sheep, looking08:13
brinzhang_whoami-rajat: sorry, ack08:14
ruffian_sheepwhoami-rajat : Sorry. . . Just remembered that my log also turned off debugging. . . May cause trouble for you, let me run again now08:14
ruffian_sheepIt may take a while for debug logs to be sent to you08:15
*** tkajinam has quit IRC08:19
whoami-rajatruffian_sheep, i see this error Failed to attach 706e2ea4-1852-492c-b430-6bb1d3801818 at /dev/vdb08:21
ruffian_sheepwhoami-rajat : This is about TestEncryptedCinderVolumes for this test case, and it has nothing to do with multiattach. If I'm not mistaken, it has something to do with space capacity. I have solved it and re-verified it. no problem.08:25
whoami-rajatruffian_sheep, matching the timestamp and the error your shared previously08:26
whoami-rajatMar 25 06:56:34 devstack nova-compute[7227]: ERROR nova.compute.manager [None req-c13b288f-df1e-4d7e-bfe2-e04656a01f00 tempest-TestEncryptedCinderVolumes-1135730256 tempest-TestEncryptedCinderVolumes-1135730256] [instance: a0121f9d-0190-432e-a370-b691d76a90b9] Failed to attach 706e2ea4-1852-492c-b430-6bb1d3801818 at /dev/vdb: cinderclient.exceptions.ClientException: Internal Server Error (HTTP 500)08:26
whoami-rajatMar 25 06:56:47 devstack cinder-volume[7217]: ERROR oslo_messaging.rpc.server cinder.exception.VolumeAttachmentNotFound: Volume attachment could not be found with filter: attachment_id = 31695c9c-8810-427c-b59f-4f82f214cc00.08:26
whoami-rajatfirst one is from n-cpu and other in c-vol08:26
whoami-rajatand if this is another issue then i don't find any other relevant failures08:27
*** n-saito has quit IRC08:27
ruffian_sheepMar 25 03:53:44 devstack nova-compute[7227]: INFO nova.compute.manager [-] [instance: 9f997081-be43-4601-b584-339cd558037f] Took 0.10 seconds to deallocate network for instance.Mar 25 03:53:44 devstack nova-compute[7227]: ERROR nova.volume.cinder [None req-f5887c97-87e0-47ad-a4b0-007bd1cbeee2 tempest-TestMultiAttachVolumeSwap-187988877708:30
ruffian_sheeptempest-TestMultiAttachVolumeSwap-1879888777] Delete attachment failed for attachment 68da0d52-5336-4c68-a9e6-f56de0cf5ce1. Error: Volume attachment could not be found with filter: attachment_id = 68da0d52-5336-4c68-a9e6-f56de0cf5ce1. (HTTP 404) (Request-ID: req-92f08d3d-e50d-48c0-ae5b-662b892093cb) Code: 404: cinderclient.exceptions.NotFound:08:31
ruffian_sheepVolume attachment could not be found with filter: attachment_id = 68da0d52-5336-4c68-a9e6-f56de0cf5ce1. (HTTP 404) (Request-ID: req-92f08d3d-e50d-48c0-ae5b-662b892093cb)08:31
ruffian_sheepcompleted successfully.Mar 25 03:53:18 devstack cinder-volume[7217]: WARNING py.warnings [req-a1cacfa0-77d9-4011-83c7-e4f57b3fa5db req-8bd4756f-db6d-4088-b1e9-78b6e4703019 tempest-TestMultiAttachVolumeSwap-442211781 None] /usr/local/lib/python3.7/site-packages/sqlalchemy/orm/evaluator.py:99: SAWarning: Evaluating non-mapped column expression08:31
ruffian_sheep'updated_at' onto ORM instances; this is a deprecated use case.  Please make use of the actual mapped columns in ORM-evaluated UPDATE / DELETE expressions.Mar 25 03:53:18 devstack cinder-volume[7217]: "UPDATE / DELETE expressions." % clauseMar 25 03:53:18 devstack cinder-volume[7217]: Mar 25 03:53:43 devstack cinder-volume[7217]: INFO08:31
ruffian_sheepcinder.volume.manager [req-86d42b15-f075-4d6b-8c91-37d856f5b64d req-f102f3ef-dd3d-4f5b-bc91-e355694eb690 tempest-TestMultiAttachVolumeSwap-1879888777 None] Terminate volume connection completed successfully.Mar 25 03:53:43 devstack cinder-volume[7217]: WARNING py.warnings [req-86d42b15-f075-4d6b-8c91-37d856f5b64d08:31
ruffian_sheepreq-f102f3ef-dd3d-4f5b-bc91-e355694eb690 tempest-TestMultiAttachVolumeSwap-1879888777 None] /usr/local/lib/python3.7/site-packages/sqlalchemy/orm/evaluator.py:99: SAWarning: Evaluating non-mapped column expression 'updated_at' onto ORM instances; this is a deprecated use case.  Please make use of the actual mapped columns in ORM-evaluated UPDATE /08:31
ruffian_sheepDELETE expressions.Mar 25 03:53:43 devstack cinder-volume[7217]: "UPDATE / DELETE expressions." % clauseMar 25 03:53:43 devstack cinder-volume[7217]: Mar 25 03:54:35 devstack cinder-volume[7217]: INFO cinder.volume.manager [req-c3db8664-ae89-4d6b-a170-43054c15031c req-e14fb044-f0e4-404a-92ba-b84a8e34a6cf tempest-TestMultiAttachVolumeSwap-187988877708:31
ruffian_sheepNone] Terminate volume connection completed successfully.08:31
ruffian_sheepwhoami-rajat : u can see the timestamp :Mar 25 03:5308:32
openstackgerritLiang Fang proposed openstack/devstack-plugin-open-cas master: Add tempest tests to zuul  https://review.opendev.org/71377208:33
*** e0ne has joined #openstack-cinder08:51
openstackgerritLiang Fang proposed openstack/devstack-plugin-open-cas master: Add tempest tests to zuul  https://review.opendev.org/71377208:53
*** tosky has joined #openstack-cinder09:00
*** Liang__ is now known as LiangFang09:03
xuanydwhoami-rajat: thanks your review, In this patch, the consideration is to add backup_id to the newly recovered hard disk metadata. The problem you mentioned can be solved by another patch.09:06
*** zhanglong has quit IRC09:09
whoami-rajatxuanyd, i had 2 points there, the detail you're adding is already in the volume name. and we also can create a metadata entry manually referencing that09:10
whoami-rajatxuanyd, IMO the problem is it doesn't get dynamically updated in the cases i mentioned.09:11
whoami-rajatxuanyd, i didn't leave a vote since i'm not really familiar with your usecase but i don't see any additional functionality in that feature09:12
*** ociuhandu has joined #openstack-cinder09:14
openstackgerritLiang Fang proposed openstack/devstack-plugin-open-cas master: Add tempest tests to zuul  https://review.opendev.org/71377209:15
xuanydwhoami-rajat: In the previous solution, the src_backup_id was considered to be recorded in the database. After discussion, it was recorded in the metadata instead.09:15
xuanydwhoamai-rajat: I am sorry, I dont understand your mean, and what should i do09:21
*** e0ne_ has joined #openstack-cinder09:25
*** e0ne has quit IRC09:25
*** ykarel is now known as ykarel|lunch09:27
whoami-rajatxuanyd, see my comment in patchset 2309:32
*** ruffian_sheep has quit IRC09:32
whoami-rajatxuanyd, but if you don't want to address those issues then also other cores can approve your feature09:33
xuanydwhoami-rajat: Can I mention another patch as a solution to this problem, The current patch is only implemented for the use cases in the spec09:36
xuanydwhoami-rajat:09:37
xuanydI will submit a new commit to fix your comment09:37
whoami-rajatxuanyd, also when we restore a backup and a new volume is created, the backup id already exists in the new volume's name. can't we use that info?09:38
xuanyd whoami-rajat:i know the problem, thanks very much; I think the name is optional and can be modified,09:41
whoami-rajatxuanyd, metadata can be modified as well and we can manually create a metadata with the backup id in the volume name09:43
whoami-rajatxuanyd, but anyway i think i'm being too picky here09:44
whoami-rajatxuanyd, if we can address the case i mentioned in my comment then i think i'm in agreement with this09:44
*** martinkennelly has joined #openstack-cinder09:44
whoami-rajats/i think/i'm confident and09:45
*** ociuhandu has quit IRC09:48
xuanydwhoami-rajat: I got this problem in patchset 23, thanks very much for your suggest. later I will push a new patch to address your comment.09:48
*** ociuhandu has joined #openstack-cinder09:49
whoami-rajatxuanyd, np, Thanks for working on this.09:49
*** e0ne_ has quit IRC09:50
*** e0ne has joined #openstack-cinder09:51
*** rcernin has quit IRC09:51
*** ociuhandu has quit IRC09:58
openstackgerrityenai proposed openstack/cinder master: Preserve request id in Cinder logs when creating boot volume  https://review.opendev.org/71514710:01
*** LiangFang has quit IRC10:06
*** ociuhandu has joined #openstack-cinder10:08
*** ykarel|lunch is now known as ykarel10:14
*** raghavendrat has joined #openstack-cinder10:26
raghavendrathi e0ne: geguileo: whoami-rajat:10:38
geguileoraghavendrat: hi10:39
raghavendratthis is regarding https://review.opendev.org/#/c/713803/; whenever you get time, can you please review. Thanks.10:39
openstackgerritSean McGinnis proposed openstack/cinder master: Add cap for hacking  https://review.opendev.org/71515410:39
e0neraghavendrat: hi. 3rd-party CI should pass before reviews10:40
raghavendratok. we are working on HPE Storage CI, will update code review link once it is up.10:42
geguileoraghavendrat: reviewed10:58
*** spatel has joined #openstack-cinder10:59
*** e0ne has quit IRC10:59
*** e0ne has joined #openstack-cinder10:59
raghavendratthanks geguileo: will work on review comments11:00
*** e0ne has quit IRC11:00
*** e0ne has joined #openstack-cinder11:00
raghavendratcorrecting message .. thanks geguileo:  ... I will work on review comments11:00
*** spatel has quit IRC11:03
*** andrebeltrami has joined #openstack-cinder11:13
openstackgerritMichael McAleer proposed openstack/cinder master: PowerMax Driver - SRDF Replication Fixes  https://review.opendev.org/71472311:16
*** xuanyd has quit IRC11:30
*** ociuhandu has quit IRC11:36
*** ociuhandu has joined #openstack-cinder11:38
*** ociuhandu has quit IRC11:43
*** e0ne_ has joined #openstack-cinder11:46
*** e0ne has quit IRC11:47
*** e0ne has joined #openstack-cinder11:50
*** e0ne_ has quit IRC11:50
geguileoraghavendrat: ok11:51
*** e0ne has quit IRC11:53
*** e0ne has joined #openstack-cinder11:54
*** Lucas_Gray has joined #openstack-cinder12:09
*** zhanglong has joined #openstack-cinder12:10
*** e0ne has quit IRC12:14
*** e0ne has joined #openstack-cinder12:14
*** zhanglong has quit IRC12:15
*** zhanglong has joined #openstack-cinder12:15
*** lpetrut has joined #openstack-cinder12:18
*** udesale_ has joined #openstack-cinder12:21
*** udesale has quit IRC12:24
*** Lucas_Gray has quit IRC12:26
*** e0ne has quit IRC12:28
*** e0ne has joined #openstack-cinder12:28
*** ociuhandu has joined #openstack-cinder12:28
*** ociuhandu has quit IRC12:33
*** sapd1 has quit IRC12:36
hemnamornin12:42
*** Lucas_Gray has joined #openstack-cinder12:46
*** spatel has joined #openstack-cinder12:47
*** ociuhandu has joined #openstack-cinder12:49
*** spatel has quit IRC12:52
*** raghavendrat has quit IRC13:02
*** ociuhandu has quit IRC13:10
*** enriquetaso has joined #openstack-cinder13:10
*** gkadam has quit IRC13:10
openstackgerritIvan Kolodyazhny proposed openstack/cinder master: Remove reference to ThinLVMVolumeDrive  https://review.opendev.org/71520113:16
*** ajitha has joined #openstack-cinder13:18
openstackgerritMerged openstack/cinder master: Remove suds from requirements  https://review.opendev.org/71493513:22
*** tkajinam has joined #openstack-cinder13:22
*** ociuhandu has joined #openstack-cinder13:26
*** zhanglong has quit IRC13:36
*** e0ne_ has joined #openstack-cinder13:41
*** e0ne has quit IRC13:41
*** ajitha has quit IRC13:46
*** Lucas_Gray has quit IRC14:13
*** sapd1 has joined #openstack-cinder14:28
*** jbernard has quit IRC14:29
*** jbernard has joined #openstack-cinder14:29
*** jgriffith has quit IRC14:30
*** mmethot has quit IRC14:30
*** jgriffith has joined #openstack-cinder14:31
*** brinzhang_ has quit IRC14:49
*** brinzhang_ has joined #openstack-cinder14:49
*** sfernand has joined #openstack-cinder14:53
*** ociuhandu has quit IRC14:58
*** ociuhandu has joined #openstack-cinder15:00
*** ykarel is now known as ykarel|away15:06
openstackgerritSilvan Kaiser proposed openstack/cinder master: Allow creating volumes from snapshots during backups for Quobyte  https://review.opendev.org/68310315:10
*** KeithMnemonic has quit IRC15:13
*** enriquetaso has quit IRC15:29
*** tkajinam has quit IRC15:30
*** sapd1 has quit IRC15:36
*** ociuhandu has quit IRC15:37
*** ociuhandu has joined #openstack-cinder15:38
*** ociuhandu has quit IRC15:39
*** lvbin01 has quit IRC15:39
*** ociuhandu has joined #openstack-cinder15:40
*** lvbin01 has joined #openstack-cinder15:40
*** ociuhandu has quit IRC15:41
*** sapd1 has joined #openstack-cinder15:49
*** ociuhandu has joined #openstack-cinder15:49
*** udesale_ has quit IRC15:50
*** ociuhandu has quit IRC15:52
openstackgerritMerged openstack/cinder master: Vmware: Revert the volume stats revert.  https://review.opendev.org/70273015:52
*** raunak12 has joined #openstack-cinder15:58
*** ociuhandu has joined #openstack-cinder16:00
*** ociuhandu has quit IRC16:16
raunak12Hi rosmaita, could you please review https://review.opendev.org/#/c/711362/ ? Zuul has passed and both our FC and ISCSI CI’s are running now16:20
*** ociuhandu has joined #openstack-cinder16:26
*** dpawlik has quit IRC16:26
openstackgerritHelen Walsh proposed openstack/cinder master: PowerMax Driver - Refreshing stale metadata  https://review.opendev.org/71297716:28
*** ociuhandu has quit IRC16:36
*** ociuhandu has joined #openstack-cinder16:49
*** ociuhandu has quit IRC16:53
*** enriquetaso has joined #openstack-cinder17:05
*** jv__ has joined #openstack-cinder17:05
*** jv has quit IRC17:05
openstackgerritRaunak Kumar proposed openstack/cinder master: Revert "Remove Nimble Storage Driver"  https://review.opendev.org/71136217:10
*** e0ne_ has quit IRC17:12
*** e0ne has joined #openstack-cinder17:12
*** lpetrut has quit IRC17:21
*** openstack has quit IRC17:49
*** openstack has joined #openstack-cinder17:53
*** ChanServ sets mode: +o openstack17:53
*** e0ne has joined #openstack-cinder19:18
*** e0ne has quit IRC19:39
*** ociuhandu has joined #openstack-cinder19:44
*** martinkennelly has quit IRC19:48
*** ociuhandu has quit IRC19:55
openstackgerritRaunak Kumar proposed openstack/cinder master: Revert "Remove Nimble Storage Driver"  https://review.opendev.org/71136219:56
*** lvbin02 has joined #openstack-cinder20:15
*** lvbin01 has quit IRC20:15
*** lvbin02 is now known as lvbin0120:15
*** lvbin01 has quit IRC20:16
*** lvbin02 has joined #openstack-cinder20:16
*** lvbin02 is now known as lvbin0120:19
*** e0ne has joined #openstack-cinder20:20
*** e0ne has quit IRC20:29
*** e0ne has joined #openstack-cinder20:29
*** ociuhandu has joined #openstack-cinder20:31
*** ociuhandu has quit IRC20:37
*** e0ne has quit IRC20:42
*** zhanglong has joined #openstack-cinder21:06
*** ociuhandu has joined #openstack-cinder21:22
*** ociuhandu has quit IRC21:26
*** zhanglong has quit IRC21:36
*** ociuhandu has joined #openstack-cinder21:44
*** enriquetaso has quit IRC21:49
*** andrebeltrami has quit IRC22:22
*** sfernand has quit IRC22:23
*** ociuhandu has quit IRC22:24
*** ociuhandu has joined #openstack-cinder22:24
*** rcernin has joined #openstack-cinder22:25
*** ociuhandu has quit IRC22:28
*** zhanglong has joined #openstack-cinder22:41
*** tkajinam has joined #openstack-cinder22:54
*** rcernin has quit IRC23:06
*** rcernin has joined #openstack-cinder23:07
*** rcernin has quit IRC23:07
*** rcernin has joined #openstack-cinder23:08
*** vishalmanchanda has quit IRC23:39
openstackgerritMerged openstack/cinder master: API: os-reset_status notification fix  https://review.opendev.org/70856323:43
*** rosmaita has quit IRC23:46
*** zhanglong has quit IRC23:48
*** tosky has quit IRC23:53

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