*** dpawlik has joined #openstack-cinder | 00:10 | |
*** sapd1 has joined #openstack-cinder | 00:14 | |
*** dpawlik has quit IRC | 00:15 | |
*** sapd1 has quit IRC | 00:18 | |
*** enriquetaso has joined #openstack-cinder | 00:20 | |
*** enriquetaso has quit IRC | 00:25 | |
*** jgriffith has quit IRC | 00:26 | |
*** markvoelker has joined #openstack-cinder | 00:34 | |
*** markvoelker has quit IRC | 00:39 | |
*** dpawlik has joined #openstack-cinder | 00:52 | |
*** dpawlik has quit IRC | 00:57 | |
*** markvoelker has joined #openstack-cinder | 01:05 | |
*** ruffian_sheep has joined #openstack-cinder | 01:12 | |
*** whoami-rajat has joined #openstack-cinder | 01:17 | |
ruffian_sheep | e0ne:I have read the link you set,but ...I still dont know what the job our driver should do.The driver patch is this :https://review.openstack.org/#/c/612311/ | 01:27 |
---|---|---|
ruffian_sheep | e0ne:We have run the Running Python Unit Tests.But I dont know what is the job should be set in the CI | 01:28 |
*** markvoelker has quit IRC | 01:32 | |
*** zhubx has quit IRC | 01:33 | |
*** zhubx has joined #openstack-cinder | 01:33 | |
openstackgerrit | Merged openstack/os-brick stable/pike: Handle multiple errors in multipath -l parsing https://review.openstack.org/643120 | 01:35 |
*** ruffian_sheep has quit IRC | 01:46 | |
*** dpawlik has joined #openstack-cinder | 02:07 | |
*** penick has quit IRC | 02:09 | |
*** dpawlik has quit IRC | 02:12 | |
*** dpawlik has joined #openstack-cinder | 02:18 | |
*** dpawlik has quit IRC | 02:22 | |
openstackgerrit | futaotao proposed openstack/cinder master: Modify the configuration mode of FusionStorage Cinder Driver https://review.openstack.org/632983 | 02:47 |
*** psachin has joined #openstack-cinder | 03:02 | |
*** zhubx has quit IRC | 03:12 | |
*** zhubx has joined #openstack-cinder | 03:13 | |
LiangFang | hi cores, anybody know how to get project id from project name? | 03:33 |
LiangFang | it may need to query keystone to get project id | 03:34 |
LiangFang | in cinder, is there any api to do this? | 03:37 |
*** udesale has joined #openstack-cinder | 03:50 | |
openstackgerrit | Merged openstack/os-brick master: Fix ScaleIO KeyError after upgrade https://review.openstack.org/643092 | 04:06 |
whoami-rajat | LiangFang: Hi, why do you want to do that from cinder? could you explain the usecase. | 04:14 |
*** psachin has quit IRC | 04:30 | |
*** dave-mccowan has quit IRC | 04:30 | |
LiangFang | whoami-rajat: in order to enable the raw cache feature, the internal_project_id and internal_user_id need to be set in cinder.conf | 04:32 |
LiangFang | but in container environment, cinder.conf is filled by openstack_helm repo | 04:32 |
LiangFang | and we find it's hard to get project_id at the time of deploy cinder container | 04:33 |
LiangFang | so want to hardcode an internal_project_name and internal_user_name in values.yaml, so these hard coded info can be filled in cinder.conf | 04:35 |
LiangFang | in cinder, a patch will be submitted, get_internal_tenant_context() will be modified. if there's internal_project_name and internal_user_name specified in cinder.conf, then it translate name to id | 04:37 |
*** lpetrut has joined #openstack-cinder | 04:47 | |
*** dpawlik has joined #openstack-cinder | 04:52 | |
*** dpawlik has quit IRC | 04:57 | |
*** sapd1 has joined #openstack-cinder | 05:04 | |
*** dpawlik has joined #openstack-cinder | 05:04 | |
*** dpawlik has quit IRC | 05:08 | |
*** lpetrut has quit IRC | 05:19 | |
*** chhagarw has joined #openstack-cinder | 05:21 | |
*** lpetrut has joined #openstack-cinder | 05:29 | |
*** zhubx007 has joined #openstack-cinder | 05:34 | |
*** zhubx has quit IRC | 05:34 | |
*** dpawlik has joined #openstack-cinder | 05:42 | |
*** lpetrut has quit IRC | 05:43 | |
*** dpawlik has quit IRC | 05:47 | |
*** rcernin has quit IRC | 05:58 | |
*** rcernin has joined #openstack-cinder | 06:12 | |
*** e0ne has joined #openstack-cinder | 06:24 | |
*** e0ne has quit IRC | 06:27 | |
whoami-rajat | LiangFang: AFAIK cinder has cinder_internal_tenant_project_id and cinder_internal_tenant_user_id parameters in cinder.conf and we fetch it to generate the RequestContext for internal requests. | 06:29 |
whoami-rajat | I'm not much familiar with helm repo and how it deploys containers so i've a few queries, | 06:29 |
whoami-rajat | 1) what are the contents and purpose of values.yaml | 06:29 |
whoami-rajat | 2) from where you will get internal_project_name to hardcode it in values.yaml, if values.yaml copies the same parameters in cinder.conf and we've project info, can't we directly supply internal_project_id? | 06:29 |
*** yury-kulaz has joined #openstack-cinder | 06:43 | |
LiangFang | whoami-rajat: to 1) values.yaml is in openstacl-helm repo, openstack-helm/cinder/values.yaml, you can clone the repo and see. It contains the default values for configure cinder containers. internal_project_name and internal_user_name want to be put there. | 06:56 |
LiangFang | whoami-rajat: 2) just hardcode a name, such as "internal_cinder_project" and "internal_cinder_user" in values.yaml. user can easily override the hardcode values via giving a parameter to helm ... | 06:58 |
*** Luzi has joined #openstack-cinder | 07:00 | |
LiangFang | at the time of deploying cinder containers, no cinder services are ready. helm then try to create project and user in a pod, use the name specified in values.yaml. But helm cannot get the project_id an user_id from pod, because when pod is running, configmap is already generated. | 07:03 |
LiangFang | it is configmap which will fill cinder.conf | 07:03 |
LiangFang | so configmap should get the internal_project_name and internal_user_name from values.yaml at beginning, then fill in cinder.conf, the run pod to create project and user using the name in values.yaml | 07:05 |
*** ruffian_sheep has joined #openstack-cinder | 07:06 | |
ruffian_sheep | whoami-rajat:Hi,whoami-rajat.Do u know what the job should I set to the CI? | 07:07 |
*** yury-kulaz has quit IRC | 07:08 | |
*** stakeda has joined #openstack-cinder | 07:14 | |
*** dpawlik has joined #openstack-cinder | 07:15 | |
*** sahid has joined #openstack-cinder | 07:35 | |
*** pcaruana has joined #openstack-cinder | 07:37 | |
openstackgerrit | hjy proposed openstack/cinder master: Add MacroSAN cinder driver https://review.openstack.org/643519 | 07:40 |
openstackgerrit | hjy proposed openstack/cinder master: Add MacroSAN cinder driver https://review.openstack.org/643519 | 07:57 |
*** rcernin has quit IRC | 07:59 | |
*** dpawlik has quit IRC | 08:10 | |
openstackgerrit | zhufl proposed openstack/cinder master: Fix kwargs passed to exception to get better format of error message https://review.openstack.org/643528 | 08:11 |
*** geguileo has quit IRC | 08:15 | |
*** tkajinam has quit IRC | 08:18 | |
whoami-rajat | ruffian_sheep: i think the CI should run tempest tests. | 08:19 |
*** pcaruana has quit IRC | 08:24 | |
*** pcaruana|afk| has joined #openstack-cinder | 08:24 | |
*** mcgiggler has joined #openstack-cinder | 08:24 | |
*** markvoelker has joined #openstack-cinder | 08:27 | |
*** LiangFang has quit IRC | 08:31 | |
whoami-rajat | ruffian_sheep: you can take reference from other CI's like here | 08:32 |
whoami-rajat | https://openstackci.oracle.com/zfssa_ci/refs-changes-77-640077-3-iscsi/stestr_results.html | 08:32 |
*** e0ne has joined #openstack-cinder | 08:35 | |
*** raghavendrat has quit IRC | 08:56 | |
*** mszwed has joined #openstack-cinder | 08:59 | |
openstackgerrit | Ryan Liang proposed openstack/cinder master: VNX: delete the LUN from VNX backend https://review.openstack.org/605904 | 09:07 |
ruffian_sheep | whoami-rajat:Not yet | 09:07 |
*** dpawlik has joined #openstack-cinder | 09:13 | |
*** lpetrut has joined #openstack-cinder | 09:20 | |
*** logan- has quit IRC | 09:23 | |
*** logan- has joined #openstack-cinder | 09:27 | |
*** Dinesh_Bhor has joined #openstack-cinder | 09:30 | |
*** Dinesh__Bhor has joined #openstack-cinder | 09:30 | |
*** Dinesh__Bhor has quit IRC | 09:30 | |
*** Dinesh_Bhor has quit IRC | 09:30 | |
*** Dinesh_Bhor has joined #openstack-cinder | 09:31 | |
openstackgerrit | Gorka Eguileor proposed openstack/cinderlib master: Fix cinderlib Python package https://review.openstack.org/643013 | 09:38 |
openstackgerrit | Gorka Eguileor proposed openstack/cinderlib master: Add DevStack plugin https://review.openstack.org/643014 | 09:38 |
*** geguileo has joined #openstack-cinder | 09:38 | |
*** dpawlik has quit IRC | 09:45 | |
*** dpawlik has joined #openstack-cinder | 09:48 | |
*** lpetrut has quit IRC | 10:02 | |
*** martinkennelly has joined #openstack-cinder | 10:05 | |
*** stakeda has quit IRC | 10:06 | |
*** dpawlik has quit IRC | 10:07 | |
openstackgerrit | Rajat Dhasmana proposed openstack/cinder master: Gate Fix: Bumping versions in lower-constraints.txt https://review.openstack.org/643555 | 10:24 |
whoami-rajat | geguileo: ^ making your patch dependent on this may pass it. | 10:26 |
*** lpetrut has joined #openstack-cinder | 10:27 | |
geguileo | whoami-rajat: thanks, I'll update the patch now :-) | 10:28 |
openstackgerrit | Gorka Eguileor proposed openstack/cinder master: Fix VolumeAttachment is not bound to a Session https://review.openstack.org/632549 | 10:29 |
geguileo | whoami-rajat: fingers crossed ^ :-) | 10:30 |
whoami-rajat | geguileo: :) | 10:33 |
*** bal has joined #openstack-cinder | 10:41 | |
*** dviroel_ has joined #openstack-cinder | 10:42 | |
openstackgerrit | Rajat Dhasmana proposed openstack/cinder master: Gate Fix: Bumping versions in lower-constraints.txt https://review.openstack.org/643555 | 10:43 |
*** dpawlik has joined #openstack-cinder | 10:45 | |
*** mriedem has joined #openstack-cinder | 10:53 | |
*** chhagarw has quit IRC | 10:53 | |
*** udesale has quit IRC | 10:56 | |
*** udesale has joined #openstack-cinder | 10:56 | |
*** e0ne has quit IRC | 11:03 | |
*** bal has quit IRC | 11:03 | |
*** chhagarw has joined #openstack-cinder | 11:07 | |
*** lemko has joined #openstack-cinder | 11:28 | |
*** BlackDex has quit IRC | 11:28 | |
*** thgcorrea has joined #openstack-cinder | 11:33 | |
*** dpawlik has quit IRC | 11:33 | |
*** abishop has joined #openstack-cinder | 11:36 | |
*** ruffian_sheep has quit IRC | 11:52 | |
*** BlackDex has joined #openstack-cinder | 11:57 | |
*** dpawlik has joined #openstack-cinder | 11:58 | |
efried | whoami-rajat: os-brick ready for release? | 12:10 |
*** e0ne has joined #openstack-cinder | 12:12 | |
*** abhishekk has joined #openstack-cinder | 12:13 | |
*** FlorianFa has quit IRC | 12:14 | |
*** sapd1_x has joined #openstack-cinder | 12:17 | |
openstackgerrit | Gorka Eguileor proposed openstack/cinderlib master: Fix cinderlib Python package https://review.openstack.org/643013 | 12:19 |
openstackgerrit | Gorka Eguileor proposed openstack/cinderlib master: Add DevStack plugin https://review.openstack.org/643014 | 12:19 |
*** markvoelker has quit IRC | 12:25 | |
*** dcdamien has quit IRC | 12:26 | |
*** pcaruana has joined #openstack-cinder | 12:27 | |
*** dcdamien has joined #openstack-cinder | 12:27 | |
*** pcaruana|afk| has quit IRC | 12:28 | |
*** dpawlik has quit IRC | 12:33 | |
*** chhagarw has quit IRC | 12:34 | |
whoami-rajat | efried: I think so, jungleboyj ? | 12:38 |
*** chhagarw has joined #openstack-cinder | 12:39 | |
*** tobias-urdin has joined #openstack-cinder | 12:40 | |
*** abhishekk has quit IRC | 12:53 | |
*** dave-mccowan has joined #openstack-cinder | 13:02 | |
efried | whoami-rajat: I thought maybe prometheanfire was going to get impatient, but it sounds like he's not. | 13:04 |
efried | Pretty sure jungleboyj said he was going to propose it, so I don't want to step on toes; I'm sure it's okay to wait for him. | 13:05 |
*** chhagarw has quit IRC | 13:11 | |
*** chhagarw has joined #openstack-cinder | 13:11 | |
*** lseki has joined #openstack-cinder | 13:11 | |
*** eharney has quit IRC | 13:15 | |
whoami-rajat | efried: he will be available in a while, I'm sure he won't mind it but it's better to ensure everything's alright this time. | 13:19 |
efried | whoami-rajat: He spoke up in -requirements - he's on it as soon as he gets to his desk. | 13:19 |
*** chhagarw has quit IRC | 13:20 | |
*** dpawlik has joined #openstack-cinder | 13:20 | |
*** enriquetaso has joined #openstack-cinder | 13:33 | |
*** pcaruana has quit IRC | 13:36 | |
*** lemko has quit IRC | 13:37 | |
*** dpawlik has quit IRC | 13:52 | |
*** dpawlik has joined #openstack-cinder | 13:54 | |
*** e0ne has quit IRC | 13:58 | |
*** eharney has joined #openstack-cinder | 13:59 | |
*** TheJulia is now known as needssleep | 13:59 | |
*** efried is now known as fried_rice | 14:00 | |
*** e0ne has joined #openstack-cinder | 14:06 | |
*** pcaruana has joined #openstack-cinder | 14:17 | |
*** sahid has quit IRC | 14:29 | |
*** sahid has joined #openstack-cinder | 14:29 | |
*** dpawlik has quit IRC | 14:39 | |
*** dpawlik has joined #openstack-cinder | 14:51 | |
*** Luzi has quit IRC | 15:14 | |
*** dpawlik has quit IRC | 15:22 | |
*** zhubx007 has quit IRC | 15:33 | |
*** zhubx007 has joined #openstack-cinder | 15:35 | |
*** zhubx007 has quit IRC | 15:36 | |
*** zhubx007 has joined #openstack-cinder | 15:37 | |
smcginnis | So I missed this, but why are we doing all this busy work to revert that connector name change? | 15:38 |
smcginnis | jungleboyj ^ | 15:38 |
fried_rice | smcginnis: http://eavesdrop.openstack.org/irclogs/%23openstack-cinder/%23openstack-cinder.2019-03-12.log.html#t2019-03-12T16:01:09 | 15:40 |
smcginnis | fried_rice: Still not following why it's a critical issue that required a revert and FFE. | 15:41 |
smcginnis | Because we didn't want a warning message in the log saying the name was changing when it's going to be changing? | 15:42 |
fried_rice | smcginnis: It's not going to be changing. | 15:42 |
smcginnis | It will be. | 15:42 |
fried_rice | IIUC the original rename was a bad idea that never should have landed. | 15:42 |
smcginnis | No, they are changing the name. That's not the name of their product any more, so whether it's in stein (not any more) or train, it's changing. | 15:42 |
whoami-rajat | eharney: due to bionic migration our gates are failing at lower constraints jobs, that's why i bumped the package versions. | 15:43 |
smcginnis | We can drop the warning message, but such a trivial thing that I don't follow why this blew up into such a big thing. | 15:43 |
fried_rice | smcginnis: I wasn't involved in those decisions, don't really understand why the rename was originally proposed, or the rationale behind reverting. But on the surface, it looks like "rename my product" doesn't affect "name of the internal connector" and we don't want the latter to be following corporate rebrandings of the former. | 15:43 |
jungleboyj | smcginnis: Right, but the connector name is not user visible so we don't want to make changes like this. | 15:44 |
smcginnis | Why not. | 15:44 |
jungleboyj | smcginnis: hemna_ can best explain why. | 15:44 |
smcginnis | Confusing in the long run to have a connector that is named for something that no longer exists. | 15:44 |
smcginnis | Keep the mapping in there. | 15:44 |
smcginnis | Drop the warning log and just do this as a stable release after requirements freeze is over. | 15:45 |
jungleboyj | Because os-brick is not intended to have vendor naming in it. | 15:45 |
smcginnis | Then it's in there and they can finish renaming their drivers in train without needing to do this whole song and dance again. | 15:45 |
smcginnis | Intended or not, it does. | 15:45 |
jungleboyj | Ugh, ok so we spent a good part of the week spinning around this. hemna_ felt this was critical, so we pushed it. | 15:46 |
jungleboyj | I am sure that I am missing a detail in the explanation. | 15:46 |
jungleboyj | Also discovered that the connector for NVME shouldn't have been merged in as what Cinder actually does is NVMe-oF . | 15:47 |
whoami-rajat | jungleboyj: smcginnis is there a requirements freeze exception too? | 15:47 |
smcginnis | Yeah | 15:47 |
jungleboyj | Didn't understand how NVME worked at the time. | 15:47 |
whoami-rajat | https://review.openstack.org/643555 | 15:48 |
whoami-rajat | This is for our gate fix at lower constraints, | 15:48 |
*** e0ne has quit IRC | 15:51 | |
eharney | whoami-rajat: right, i got that part.. | 15:54 |
*** chhagarw has joined #openstack-cinder | 15:54 | |
*** lpetrut has quit IRC | 15:56 | |
*** lpetrut has joined #openstack-cinder | 15:56 | |
smcginnis | The requirements freeze is really the openstack/requirements repo freeze. As long as we are using versions of packages that are already listed in there, we should be safe. | 15:58 |
*** udesale has quit IRC | 15:59 | |
eharney | smcginnis: cool, makes sense | 16:02 |
openstackgerrit | Gorka Eguileor proposed openstack/cinderlib master: Fix RBD connector https://review.openstack.org/643015 | 16:13 |
*** lpetrut has quit IRC | 16:13 | |
openstackgerrit | Gorka Eguileor proposed openstack/cinderlib master: WIP/DROP: Test cross-repo on cinderlib https://review.openstack.org/643628 | 16:23 |
*** woojay has quit IRC | 16:24 | |
*** kmalloc is now known as needscoffee | 16:25 | |
martinkennelly | hey all (hemna especially), any update on the review of the tempest tests/logs for the RSD CI? No pressure, just curious so I could resolve any issues you may have ASAP. Thank you for taking the time to do this. | 16:27 |
*** sapd1_x has quit IRC | 16:35 | |
*** henriqueof has quit IRC | 16:48 | |
*** walshh__ has joined #openstack-cinder | 16:53 | |
whoami-rajat | smcginnis: we did the FFE due to avishay's revert on the wwn part, also hemna proposed a case when the os-brick renaming will cause a failure since it wasnt renamed in cinder and nova. | 16:53 |
*** mcgiggler has quit IRC | 17:01 | |
jungleboyj | whoami-rajat: I had a feeling I was forgetting a case that justified the change more. | 17:10 |
jungleboyj | Thanks for sharing that. I have had too many fires burning this week. | 17:10 |
*** e0ne has joined #openstack-cinder | 17:10 | |
*** e0ne has quit IRC | 17:11 | |
*** itlinux has quit IRC | 17:18 | |
*** woojay has joined #openstack-cinder | 17:20 | |
*** sahid has quit IRC | 17:26 | |
whoami-rajat | jungleboyj: I thought it was missed in the above convo so just for info :) | 17:27 |
jungleboyj | whoami-rajat: Yep. Very helpful. | 17:28 |
*** zhubx007 has quit IRC | 17:31 | |
*** zhubx007 has joined #openstack-cinder | 17:32 | |
*** dcdamien has quit IRC | 17:38 | |
*** tomtom001 has joined #openstack-cinder | 17:40 | |
tomtom001 | hello, running OpenStack queens and running into an issue where volumes go into a creating state and never finish. I see the request go into the cinder-api, but the scheduler nor the the volume service ever see the vol id or request id. Does anyone know where I could start looking for the root cause of this issue? | 17:41 |
tomtom001 | Also, after checking logs there are no error messages reported. | 17:42 |
tomtom001 | Some volumes have been stuck in this state for two days now. | 17:42 |
*** walshh__ has quit IRC | 17:45 | |
jungleboyj | tomtom001: It sounds like it is not finding a host for the volumes. | 17:46 |
*** jdillaman has quit IRC | 17:47 | |
jungleboyj | The error message for that isn't as obvious. What logging level to you have set? | 17:47 |
eharney | if the create volume message never reaches the scheduler due to a problem with amqp, you wouldn't see an error message -- probably need to examine that layer | 17:49 |
jungleboyj | It would be a message like this: | 17:49 |
jungleboyj | https://ask.openstack.org/en/question/96614/no-valid-host-was-found-cinder-volume-create/ | 17:49 |
jungleboyj | eharney: Oh good thought. | 17:49 |
tomtom001 | jungleboyj: have debug turned on, is there a loglevel setting for cinder? | 17:49 |
tomtom001 | eharney: I'll doublecheck rabbit, I've done that, and it seems ok, but I'll check again. | 17:50 |
jungleboyj | Yes, in cinder.conf you can set debug = True and verbose = True | 17:50 |
jungleboyj | Need to restart your services to set that. | 17:51 |
tomtom001 | jungleboyj: no problem will do | 17:51 |
jungleboyj | tomtom001: Cool. Hope that might help you find something. | 17:52 |
tomtom001 | hmmm.... turning on verbose didn't generate any new log entries | 18:00 |
tomtom001 | so I have debug and verbose set to True | 18:00 |
jungleboyj | You restarted the services. | 18:06 |
tomtom001 | Yes | 18:07 |
tomtom001 | debug was already turned on | 18:07 |
openstackgerrit | Merged openstack/cinder master: Gate Fix: Bumping versions in lower-constraints.txt https://review.openstack.org/643555 | 18:10 |
jungleboyj | tomtom001: And AMQP looked ok? | 18:10 |
tomtom001 | jungleboyj: yeah, this is the strangest thing I've seen in a while.... How about this: http://paste.openstack.org/show/747901/ is empty body meaningful from the cinder-api log? | 18:12 |
tomtom001 | jungleboyj: i'm not seeing any refused connections/channel/vhost errors in rabbit, is there any specific rabbit steps I could take to ensure that the cinder messaging is functioning correctly? | 18:14 |
*** chhagarw has quit IRC | 18:14 | |
tomtom001 | The rabbit cluster looks healthy. | 18:14 |
jungleboyj | I think the empty body is normal. | 18:18 |
*** eharney has quit IRC | 18:38 | |
*** bal has joined #openstack-cinder | 18:45 | |
*** bal has quit IRC | 18:46 | |
*** e0ne has joined #openstack-cinder | 18:53 | |
*** martinkennelly has quit IRC | 19:05 | |
*** gouthamr has quit IRC | 19:17 | |
*** dave-mccowan has quit IRC | 19:18 | |
openstackgerrit | Walter A. Boring IV (hemna) proposed openstack/os-brick master: Add generate_connector_list https://review.openstack.org/643667 | 19:31 |
*** eharney has joined #openstack-cinder | 19:33 | |
*** dave-mccowan has joined #openstack-cinder | 19:33 | |
*** mchlumsky_ has quit IRC | 19:34 | |
*** e0ne has quit IRC | 19:37 | |
*** carlos_silva has quit IRC | 19:37 | |
*** openstack has joined #openstack-cinder | 19:45 | |
*** ChanServ sets mode: +o openstack | 19:45 | |
*** gouthamr has joined #openstack-cinder | 19:53 | |
*** pcaruana has quit IRC | 19:59 | |
*** woojay has quit IRC | 20:12 | |
*** abishop has quit IRC | 20:20 | |
*** thgcorrea has quit IRC | 20:24 | |
*** gouthamr_ has joined #openstack-cinder | 20:29 | |
*** jgriffith has joined #openstack-cinder | 20:30 | |
*** jgriffith has quit IRC | 20:33 | |
*** jgriffith has joined #openstack-cinder | 20:34 | |
*** whoami-rajat has quit IRC | 20:46 | |
*** martinkennelly has joined #openstack-cinder | 20:50 | |
*** dviroel_ has quit IRC | 21:21 | |
*** gouthamr has quit IRC | 21:22 | |
*** dcdamien has joined #openstack-cinder | 21:42 | |
*** woojay has joined #openstack-cinder | 21:48 | |
*** KeithMnemonic has quit IRC | 21:51 | |
*** dcdamien has quit IRC | 22:15 | |
*** lseki has quit IRC | 22:49 | |
*** markvoelker has joined #openstack-cinder | 22:51 | |
*** _alastor_ has quit IRC | 23:09 | |
*** rosmaita has left #openstack-cinder | 23:12 | |
*** mriedem has quit IRC | 23:13 | |
*** _alastor_ has joined #openstack-cinder | 23:21 | |
*** martinkennelly has quit IRC | 23:27 | |
openstackgerrit | Merged openstack/cinder master: NetApp SolidFire: Fix misbehavior on account creation https://review.openstack.org/633596 | 23:50 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!