Friday, 2015-08-14

*** jamielennox is now known as jamielennox|away00:05
*** annegentle has joined #openstack-cinder00:05
*** apoorvad has joined #openstack-cinder00:06
*** dflorea has joined #openstack-cinder00:07
*** jamielennox|away is now known as jamielennox00:07
*** dflorea has quit IRC00:08
*** jamielennox is now known as jamielennox|away00:10
*** salv-orlando has quit IRC00:13
*** merooney has joined #openstack-cinder00:13
*** dflorea has joined #openstack-cinder00:13
*** dflorea has quit IRC00:17
openstackgerritPatrick East proposed openstack/cinder: Implement Clone CG in Pure Volume Drivers  https://review.openstack.org/21180300:17
openstackgerritPatrick East proposed openstack/cinder: Fix Pure create volume from cgsnapshot  https://review.openstack.org/21180400:17
*** mylu has joined #openstack-cinder00:21
anteayathingee: that response is clear, thank you00:21
*** merooney has quit IRC00:21
anteayaasselin: nicely said00:26
*** haigang has joined #openstack-cinder00:26
*** smoriya has joined #openstack-cinder00:27
*** _cjones_ has quit IRC00:31
openstackgerritMitsuhiro Tanino proposed openstack/cinder: [WIP] Allow specified backend capabilities to be retrieved  https://review.openstack.org/21286100:31
*** tsekiyam_ has joined #openstack-cinder00:35
*** mtanino has quit IRC00:37
*** tsekiyama has quit IRC00:38
*** mylu has quit IRC00:39
*** tsekiyam_ has quit IRC00:39
thingeejgriffith: was there ever a time we caught exceptions in volume creation?00:39
thingeejgriffith: https://github.com/openstack/cinder/blob/master/cinder/volume/flows/manager/create_volume.py#L63900:40
thingeecause right now with taskflow it ends up being a mess of doing three attempts, showing stack traces three times.00:41
jgriffiththingee: that's not new00:42
jgriffiththingee: tflow has always had the retry thing00:42
thingeeyeah, just saying if you put a useful warning of why things failed in creation, it's lost00:42
thingeeeven verbose=false, debug=false00:42
jgriffiththingee: there were some things we white listed to help with that00:42
jgriffithwell.. it kinda messes up the logging no matter what00:43
thingeeyea there are the no reschedule exceptions00:44
*** bswartz has joined #openstack-cinder00:44
jgriffiththingee: not sure I know what you mean00:44
jgriffiththingee: You have to look the flow/api as well though00:45
thingeejgriffith: https://github.com/openstack/cinder/blob/master/cinder/volume/flows/manager/create_volume.py#L7100:45
jgriffiththingee: yep, that's the white list I mentioned a few lines back00:46
openstackgerritPatrick East proposed openstack/cinder: Generic image-volume cache  https://review.openstack.org/19579500:46
thingeejgriffith: my complaint is simply this, I have debug=false, verbose=false ... but stack traces toss my useful warnings up in the buffer00:46
jgriffiththingee: yep00:46
jgriffiththingee: I talked about this stuff for over a year00:46
thingeejgriffith: there is nothing catching those https://github.com/openstack/cinder/blob/master/cinder/volume/flows/manager/create_volume.py#L63900:46
thingeejgriffith: I'm assuming it's not a simple catch at this point?00:47
jgriffithYou wish00:47
jgriffiththingee: IIRC those are caught in the lib itself00:47
jgriffiththingee: As I remember it that sets the var on the flow object, the smarts on what to do with that are in the lib itself00:48
jgriffiththingee: hmmm... maybe not00:48
jgriffiththingee: could be that somebody broke it00:49
*** bnemec has joined #openstack-cinder00:49
*** zhenguo has joined #openstack-cinder00:49
jgriffiththingee: hold on, lemme stop what I'm doing and look00:49
jgriffithit's in the revert method00:50
jgriffithThere's do_reschedule and reschedule_types00:50
*** haigang has quit IRC00:50
jgriffithhttps://github.com/openstack/cinder/blob/master/cinder/volume/flows/manager/create_volume.py#L16800:50
jgriffithso it uses some trickery in the extract side00:51
*** markvoelker has joined #openstack-cinder00:51
jgriffithand gets dumped over there eventually00:51
*** diogogmt has joined #openstack-cinder00:52
*** leeantho has quit IRC00:53
voktjungleboyj, new patch set has a +2 from hemna, needs another core reviewer, https://review.openstack.org/#/c/200737/00:53
jgriffithI'm glad that somebody else is finally digging through it a bit00:53
jgriffithsorry for you, glad for me :)00:53
*** theanalyst has quit IRC00:55
*** theanalyst has joined #openstack-cinder00:55
thingeejgriffith: :(00:56
*** markvoelker has quit IRC00:56
thingeejgriffith: so a question I had for you earlier, is there a reason you have scoped keys for qos_specs?00:58
*** IanGovett1 has quit IRC00:59
*** vokt has quit IRC01:00
*** topshare has joined #openstack-cinder01:00
*** lixiaoy1 has joined #openstack-cinder01:08
*** patrickeast has quit IRC01:09
*** xyang has quit IRC01:11
*** Yogi1 has joined #openstack-cinder01:13
jgriffiththingee: the qos_spec isn't scoped, that's for the old-style method of just using extra-specs with raw k/v pairs01:16
jgriffiththingee: if you don't scope it, it will never make it past the scheduler01:16
jgriffithThere's extra_specs, and there's qos_specs, not the same thing01:16
thingeejgriffith: I get that01:16
thingeejgriffith: https://github.com/openstack/cinder/blob/master/cinder/volume/drivers/solidfire.py#L50601:16
thingeejgriffith: kvs is either extra_specs or qos specs01:17
thingeeyou seem to look for ':' no matter what01:17
*** lcurtis has joined #openstack-cinder01:17
jgriffithLook at the line about it01:17
jgriffiths/about/above/01:17
jgriffithand two below it01:17
jgriffiththat loop handles both cases01:18
*** davechen has joined #openstack-cinder01:18
thingeeoh I see, qos spec keys have to match those presets01:18
jgriffithhave to run for a bit, but I can show you later if you like01:18
jgriffithYes, exactly01:18
thingeeok cool, I get it. I just wasn't sure if that's what you meant to do. :)01:18
jgriffithminIOPS, maxIOPS etc01:18
thingeeobviously it's working, just check :P01:18
jgriffithhehe... yeah, that's intentional01:19
jgriffithway to support both notations01:19
jgriffithalrighty... gotta run, catch ya later01:20
*** Yogi1 has quit IRC01:21
*** Yogi1 has joined #openstack-cinder01:21
*** xyang has joined #openstack-cinder01:23
*** xyang has left #openstack-cinder01:24
*** skylerberg has quit IRC01:27
*** dub_ has quit IRC01:27
*** lcurtis has quit IRC01:32
*** lcurtis has joined #openstack-cinder01:33
*** Lee1092 has joined #openstack-cinder01:37
*** vilobhmm has quit IRC01:38
*** haigang has joined #openstack-cinder01:39
openstackgerritLi Yingjun proposed openstack/cinder: Add the ability to update type public status  https://review.openstack.org/20678801:42
*** dub_ has joined #openstack-cinder01:42
*** markvoelker has joined #openstack-cinder01:43
*** markvoelker has quit IRC01:48
openstackgerritxing-yang proposed openstack/cinder: DO NOT MERGE: Test Attach Snapshot  https://review.openstack.org/21290001:49
*** raildo-afk is now known as raildo01:52
*** sghanekar_ has quit IRC01:53
*** akerr_ has quit IRC01:56
*** haigang has quit IRC01:56
*** haigang has joined #openstack-cinder01:59
*** topshare has quit IRC02:05
*** topshare has joined #openstack-cinder02:07
openstackgerritKuo-tung Kao proposed openstack/cinder: Don't use context.elevated to get volume  https://review.openstack.org/20645002:07
*** haomaiwang has joined #openstack-cinder02:08
*** jamielennox|away is now known as jamielennox02:08
*** p0rtal_ has joined #openstack-cinder02:09
*** p0rtal has quit IRC02:12
*** bnemec has quit IRC02:13
openstackgerritLisaLi proposed openstack/cinder: Return volume name from backup_restore  https://review.openstack.org/19987602:15
*** haomaiwang has quit IRC02:15
*** tim_o has quit IRC02:16
*** haomaiwang has joined #openstack-cinder02:16
*** p0rtal_ has quit IRC02:17
*** p0rtal has joined #openstack-cinder02:17
*** boris-42 has quit IRC02:20
*** p0rtal has quit IRC02:22
*** p0rtal has joined #openstack-cinder02:22
*** salv-orlando has joined #openstack-cinder02:24
*** zhonghua-lee has joined #openstack-cinder02:27
*** salv-orlando has quit IRC02:32
*** BharatK has joined #openstack-cinder02:36
*** BharatK has quit IRC02:37
*** annegentle has quit IRC02:38
*** mylu has joined #openstack-cinder02:42
*** annegentle has joined #openstack-cinder02:45
openstackgerritWilson Liu proposed openstack/cinder: Add volume migration support for Huawei driver  https://review.openstack.org/20140602:46
*** annegentle has quit IRC02:46
*** topshare has quit IRC02:48
openstackgerritWilson Liu proposed openstack/cinder: Add volume retype support for Huawei driver  https://review.openstack.org/20148502:49
*** topshare has joined #openstack-cinder02:50
*** topshare has quit IRC02:50
openstackgerritWilson Liu proposed openstack/cinder: Fix way of get LUN id in Huawei driver  https://review.openstack.org/20974902:51
*** hakimo has joined #openstack-cinder02:53
openstackgerritWilson Liu proposed openstack/cinder: Add hypermetro support for Huawei driver  https://review.openstack.org/20202302:53
*** hakimo_ has quit IRC02:55
*** markvoelker has joined #openstack-cinder02:55
*** topshare has joined #openstack-cinder02:55
*** haomaiwang has quit IRC03:01
*** haomaiwang has joined #openstack-cinder03:01
*** julim has quit IRC03:03
*** apoorvad has quit IRC03:08
*** sbezverk has quit IRC03:19
*** sbezverk has joined #openstack-cinder03:19
*** jwcroppe has joined #openstack-cinder03:29
*** mylu has quit IRC03:31
*** ebalduf has joined #openstack-cinder03:31
*** raildo is now known as raildo-afk03:33
*** annegentle has joined #openstack-cinder03:38
*** hemna has joined #openstack-cinder03:48
openstackgerritVincent Hou proposed openstack/cinder: Volume status management during migration  https://review.openstack.org/18631203:48
openstackgerritxing-yang proposed openstack/cinder: Handle missing temp volume and snapshot during cleanup  https://review.openstack.org/21296203:49
*** annegentle has quit IRC03:58
*** p0rtal has quit IRC04:00
*** diogogmt has quit IRC04:00
*** haomaiwang has quit IRC04:01
*** p0rtal has joined #openstack-cinder04:01
*** haomaiwang has joined #openstack-cinder04:02
*** jamielennox is now known as jamielennox|away04:02
*** p0rtal has quit IRC04:06
*** vokt has joined #openstack-cinder04:15
*** salv-orlando has joined #openstack-cinder04:16
openstackgerritwanghao proposed openstack/cinder: Support volume backup of qcow2 format volume  https://review.openstack.org/18227604:18
*** agarciam has quit IRC04:18
*** salv-orlando has quit IRC04:19
openstackgerritVincent Hou proposed openstack/cinder: Volume status management during migration  https://review.openstack.org/18631204:19
*** vokt has quit IRC04:25
*** markvoelker has quit IRC04:26
*** zhonghua-lee has quit IRC04:27
openstackgerritwanghao proposed openstack/cinder: Support volume backup of qcow2 format volume  https://review.openstack.org/18227604:28
openstackgerritwanghao proposed openstack/cinder: Incremental backup improvements for L  https://review.openstack.org/18832804:33
*** zhonghua-lee has joined #openstack-cinder04:35
*** pradipta has joined #openstack-cinder04:38
*** dobson has quit IRC04:42
*** morgan_404 is now known as morgan_20404:42
*** pradipta has quit IRC04:44
*** morgan_204 is now known as morgan_20604:44
*** morgan_206 is now known as morgan_50304:45
*** deepakcs has joined #openstack-cinder04:45
*** jamielennox|away is now known as jamielennox04:46
*** coolsvap has quit IRC04:46
*** dobson has joined #openstack-cinder04:48
*** coolsvap has joined #openstack-cinder04:48
*** shyama has joined #openstack-cinder04:55
*** Yogi1 has quit IRC04:57
*** haomaiwang has quit IRC05:01
*** hemna has quit IRC05:01
*** haomaiwa_ has joined #openstack-cinder05:04
*** boris-42 has joined #openstack-cinder05:06
*** lcurtis has quit IRC05:09
nikeshmxing-yang : hi05:11
thingeeameade: hey your CI is hitting this issue often http://dcf901611175aa43f968-c54047c910227e27e1d6f03bb1796fd7.r95.cf5.rackcdn.com/85/201485/14/check/7mode-FC-tempest-openstack/6cb7c69/console.txt05:14
thingeeameade: tempest removed the same.conf, so if you're not recloning, you're going to hit this issue05:15
*** vilobhmm has joined #openstack-cinder05:21
*** lixiaoy1 has quit IRC05:34
*** vlaza has joined #openstack-cinder05:40
*** chlong has quit IRC05:41
*** salv-orlando has joined #openstack-cinder05:43
*** BharatK has joined #openstack-cinder05:43
*** chlong has joined #openstack-cinder05:44
*** haigang has quit IRC05:45
*** haigang has joined #openstack-cinder05:46
*** haigang has quit IRC05:47
*** haigang has joined #openstack-cinder05:47
openstackgerritDave Chen proposed openstack/cinder: Show image metadata  https://review.openstack.org/20838005:48
*** nkrinner has joined #openstack-cinder05:50
*** salv-orlando has quit IRC05:53
*** fifieldt_ has quit IRC06:00
*** coolsvap has quit IRC06:00
*** haomaiwa_ has quit IRC06:01
*** haomaiwang has joined #openstack-cinder06:02
*** ankit_ag has joined #openstack-cinder06:03
*** coolsvap has joined #openstack-cinder06:03
*** e0ne has joined #openstack-cinder06:08
openstackgerritVipin Balachandran proposed openstack/cinder: VMware: Change inventory folder hierarchy  https://review.openstack.org/19309506:20
*** simondodsley has joined #openstack-cinder06:26
*** e0ne has quit IRC06:27
*** Maike has joined #openstack-cinder06:30
*** zhonghua-lee has quit IRC06:33
*** agarciam has joined #openstack-cinder06:35
*** anshul has joined #openstack-cinder06:48
*** e0ne has joined #openstack-cinder06:51
*** haomaiwang has quit IRC07:01
*** haomaiwang has joined #openstack-cinder07:02
*** e0ne has quit IRC07:04
*** simondodsley has quit IRC07:08
*** ebalduf has quit IRC07:11
*** jamielennox is now known as jamielennox|away07:17
*** haigang has quit IRC07:21
*** afazekas_ has joined #openstack-cinder07:24
*** vilobhmm has quit IRC07:30
*** jwcroppe has quit IRC07:33
*** chlong has quit IRC07:36
*** chlong has joined #openstack-cinder07:39
*** skraynev has quit IRC07:51
*** salv-orlando has joined #openstack-cinder07:54
*** jwcroppe has joined #openstack-cinder07:59
*** haomaiwang has quit IRC08:01
*** haomaiwang has joined #openstack-cinder08:01
*** lixiaoy1 has joined #openstack-cinder08:02
*** salv-orlando has quit IRC08:05
*** yingjun has joined #openstack-cinder08:07
openstackgerritGorka Eguileor proposed openstack/cinder: Adapt SnapshotController to view builder  https://review.openstack.org/21159208:07
openstackgerritGorka Eguileor proposed openstack/cinder: Add pagination to snapshots  https://review.openstack.org/19507108:07
openstackgerritGorka Eguileor proposed openstack/cinder: On Volume list only retrieve needed data from DB  https://review.openstack.org/21212608:07
*** lixiaoy11 has joined #openstack-cinder08:10
*** lixiaoy1 has quit IRC08:11
*** jistr has joined #openstack-cinder08:13
*** yingjun has left #openstack-cinder08:14
openstackgerritOpenStack Proposal Bot proposed openstack/cinder: Updated from global requirements  https://review.openstack.org/21224708:16
openstackgerritOpenStack Proposal Bot proposed openstack/python-cinderclient: Updated from global requirements  https://review.openstack.org/21091808:21
openstackgerritwanghao proposed openstack/cinder: Support volume backup of qcow2 format volume  https://review.openstack.org/18227608:24
openstackgerritGorka Eguileor proposed openstack/cinder: Move import and export backup metadata to object  https://review.openstack.org/20092708:26
openstackgerritGorka Eguileor proposed openstack/cinder: Fix backup metadata import missing fields  https://review.openstack.org/18322208:26
*** skraynev has joined #openstack-cinder08:28
*** zhonghua-lee has joined #openstack-cinder08:28
*** lixiaoy11 has quit IRC08:30
*** davechen has left #openstack-cinder08:31
openstackgerritXinyuan Huang proposed openstack/cinder: Small clean up in volume object  https://review.openstack.org/21303708:51
*** sakaYK has joined #openstack-cinder08:53
*** IanGovett has joined #openstack-cinder08:55
*** jwcroppe has quit IRC09:00
*** haomaiwang has quit IRC09:01
*** haomaiwang has joined #openstack-cinder09:01
*** jwcroppe has joined #openstack-cinder09:01
*** jwcroppe has quit IRC09:03
*** jwcroppe has joined #openstack-cinder09:03
*** jwcroppe has quit IRC09:05
*** jwcroppe has joined #openstack-cinder09:05
*** salv-orlando has joined #openstack-cinder09:07
*** salv-orlando has quit IRC09:11
openstackgerritOpenStack Proposal Bot proposed openstack/cinder: Updated from global requirements  https://review.openstack.org/21224709:14
openstackgerritOpenStack Proposal Bot proposed openstack/os-brick: Updated from global requirements  https://review.openstack.org/21275209:20
openstackgerritVincent Hou proposed openstack/cinder: WIP: Volume status management during migration  https://review.openstack.org/18631209:25
openstackgerritVipin Balachandran proposed openstack/cinder: VMware: Deprecate vCenter version less than 5.1  https://review.openstack.org/20732109:28
*** smoriya has quit IRC09:33
*** zhonghua-lee has quit IRC09:35
*** salv-orlando has joined #openstack-cinder09:36
*** markus_z has joined #openstack-cinder09:43
*** haigang has joined #openstack-cinder09:56
*** zhonghua-lee has joined #openstack-cinder09:58
*** sakaYK has quit IRC09:59
*** haomaiwang has quit IRC10:01
*** haomaiwang has joined #openstack-cinder10:02
*** haigang has quit IRC10:03
*** baojg has joined #openstack-cinder10:07
*** kmartin has quit IRC10:18
*** sakaYK has joined #openstack-cinder10:18
*** mdenny has quit IRC10:18
*** arif-ali has quit IRC10:19
*** sakaYK has quit IRC10:23
*** sakaYK has joined #openstack-cinder10:24
*** sakaYK has quit IRC10:26
*** zhenguo has quit IRC10:26
*** baojg has quit IRC10:27
*** baojg has joined #openstack-cinder10:27
*** sakaYK has joined #openstack-cinder10:29
*** baojg has quit IRC10:32
*** sakaYK has quit IRC10:35
*** sakaYK has joined #openstack-cinder10:36
*** sakaYK has quit IRC10:38
*** arif-ali has joined #openstack-cinder10:40
*** sakaYK has joined #openstack-cinder10:43
*** sakaYK has quit IRC10:45
*** haomaiwang has quit IRC10:53
*** haigang has joined #openstack-cinder10:55
*** asselin has quit IRC10:58
*** topshare has quit IRC11:04
openstackgerritVipin Balachandran proposed openstack/cinder: VMware: Deprecate vCenter version less than 5.1  https://review.openstack.org/20732111:08
flip214If I use CINDER_ENABLED_BACKENDS in devstack, how should I pass arguments to the backends? Eg. I'd like to install one backend 3 times, with different settings each time.11:17
flip214Looking at http://docs.openstack.org/developer/devstack/lib/cinder.html "Source the enabled backends" I'm not sure whether there's some allowed syntax to put them in there.11:18
flip214CINDER_ENABLED_BACKENDS=<type>:<name>,<type>:<name>11:18
flip214But should CINDER_ENABLED_BACKENDS=<type>:<args>:<name>,<type>:<args>:<name> work too?11:18
*** zhonghua-lee has quit IRC11:25
openstackgerritTom Barron proposed openstack/cinder: Fix backup init_host volume cleanup  https://review.openstack.org/21014711:38
*** bkopilov has quit IRC11:39
*** rushil has joined #openstack-cinder11:46
*** afazekas_ has quit IRC11:47
*** delattec has joined #openstack-cinder11:51
*** cdelatte has quit IRC11:53
*** bkopilov has joined #openstack-cinder11:56
*** timcl has joined #openstack-cinder12:00
*** delattec has quit IRC12:02
*** delattec has joined #openstack-cinder12:02
*** bnemec has joined #openstack-cinder12:03
*** haigang has quit IRC12:05
*** timcl has left #openstack-cinder12:08
*** akerr has joined #openstack-cinder12:11
openstackgerritGorka Eguileor proposed openstack/cinder: Add pagination to snapshots  https://review.openstack.org/19507112:12
*** BharatK has quit IRC12:13
*** raildo-afk is now known as raildo12:13
*** markvoelker has joined #openstack-cinder12:21
*** bswartz has quit IRC12:21
*** lcurtis has joined #openstack-cinder12:23
flip214Or should I just export some more environment variables?12:25
*** eharney has joined #openstack-cinder12:27
*** rushil has quit IRC12:28
*** xiaohui has quit IRC12:28
*** xiaohui has joined #openstack-cinder12:28
*** ankit_ag has quit IRC12:29
*** edmondsw has joined #openstack-cinder12:29
*** deepakcs has quit IRC12:35
*** rushil has joined #openstack-cinder12:36
*** rushil has quit IRC12:43
*** marcusvrn has joined #openstack-cinder12:43
*** bkopilov has quit IRC12:44
*** markus_z has quit IRC12:47
smcginnisflip214: You need a section for each instance of a backend.12:54
openstackgerritKendall Nelson proposed openstack/cinder: Enable cinder-manage to remove services  https://review.openstack.org/19761312:55
smcginnisflip214: So if ENABLED_BACKENDS=abc,xyz, later you need an [abc] section and an [xyz] section for each instances settings.12:55
*** lcurtis has quit IRC12:55
smcginnisflip214: Here's an example: http://paste.openstack.org/show/414274/12:56
*** merooney has joined #openstack-cinder12:58
*** Yogi1 has joined #openstack-cinder13:01
*** lcurtis has joined #openstack-cinder13:01
*** Maike_ has joined #openstack-cinder13:02
*** bswartz has joined #openstack-cinder13:02
*** Maike_ has quit IRC13:05
*** Maike has quit IRC13:05
*** bill_az has joined #openstack-cinder13:05
*** diogogmt has joined #openstack-cinder13:05
*** dustins has joined #openstack-cinder13:12
*** rodrigods has quit IRC13:13
*** lcurtis has quit IRC13:14
*** markus_z has joined #openstack-cinder13:15
*** julim has joined #openstack-cinder13:16
*** diogogmt has quit IRC13:19
*** gouthamr has joined #openstack-cinder13:20
*** thangp has joined #openstack-cinder13:22
*** mriedem_away is now known as mriedem13:22
*** dansmith is now known as superdan13:27
*** zhenguo has joined #openstack-cinder13:28
jgriffith+1 for the example from smcginnis13:28
*** fifieldt has joined #openstack-cinder13:30
*** Yogi1 has quit IRC13:32
*** crose has joined #openstack-cinder13:32
*** jaypipes has joined #openstack-cinder13:33
*** dustins has quit IRC13:34
*** dustins has joined #openstack-cinder13:34
*** jaypipes has quit IRC13:39
*** bill_az has quit IRC13:41
*** xyang1 has joined #openstack-cinder13:41
*** Yogi1 has joined #openstack-cinder13:42
openstackgerritJacob Gregor proposed openstack/cinder: Reduced file size to prevent timeout  https://review.openstack.org/21278413:42
*** jaypipes has joined #openstack-cinder13:42
*** timcl has joined #openstack-cinder13:42
*** jaypipes is now known as leakypipes\13:43
*** leakypipes\ is now known as leakypipes13:47
*** jungleboyj has quit IRC13:50
openstackgerritxing-yang proposed openstack/cinder: EMC VMAX Create CG from CG Snapshot  https://review.openstack.org/19528013:51
*** breitz has quit IRC13:53
openstackgerritDaniel Tadrzak proposed openstack/cinder: Cleanup for cinder tests with ConsistencyGroups  https://review.openstack.org/20754413:53
*** breitz has joined #openstack-cinder13:53
*** jgregor has joined #openstack-cinder13:54
*** jecarey has joined #openstack-cinder14:02
*** jungleboyj has joined #openstack-cinder14:04
openstackgerritGoutham Pacha Ravi proposed openstack/cinder: Configure space reservation on NetApp Data ONTAP  https://review.openstack.org/21165914:06
*** nkrinner has quit IRC14:06
*** merooney has quit IRC14:07
*** mdenny has joined #openstack-cinder14:12
*** edtubill has joined #openstack-cinder14:13
*** merooney has joined #openstack-cinder14:13
openstackgerritVincent Hou proposed openstack/cinder: Volume status management during migration  https://review.openstack.org/18631214:18
*** chlong has quit IRC14:19
*** vlaza has quit IRC14:20
*** haomaiwang has joined #openstack-cinder14:25
openstackgerritGorka Eguileor proposed openstack/cinder: WIP: Atomic state changes in API node  https://review.openstack.org/20583514:29
openstackgerritGorka Eguileor proposed openstack/cinder: Add atomic conditional updates to objects  https://review.openstack.org/20583414:29
openstackgerritJose Porrua proposed openstack/os-brick: Adding CHAP discovery logic to os-brick  https://review.openstack.org/21219114:33
*** haomaiwang has quit IRC14:35
*** annegentle has joined #openstack-cinder14:37
openstackgerritKendall Nelson proposed openstack/cinder: Enable cinder-manage to remove services  https://review.openstack.org/19761314:37
*** mtanino has joined #openstack-cinder14:40
*** alejandrito has joined #openstack-cinder14:44
openstackgerritVincent Hou proposed openstack/cinder: Volume status management during migration  https://review.openstack.org/18631214:49
openstackgerritKuo-tung Kao proposed openstack/cinder: Don't use context.elevated to get volume  https://review.openstack.org/20645014:53
*** r-daneel has joined #openstack-cinder14:55
*** anshul has quit IRC14:58
*** diogogmt has joined #openstack-cinder15:01
*** annegentle has quit IRC15:11
*** annegentle has joined #openstack-cinder15:12
*** merooney has quit IRC15:12
*** tsekiyama has joined #openstack-cinder15:12
*** dannywilson has joined #openstack-cinder15:15
*** baojg has joined #openstack-cinder15:15
*** dannywilson has quit IRC15:16
*** dannywilson has joined #openstack-cinder15:17
*** rmetcalf has joined #openstack-cinder15:18
*** kmartin has joined #openstack-cinder15:19
*** crose has quit IRC15:23
*** jistr is now known as jistr|mtg15:29
openstackgerritRajini Ram proposed openstack/cinder: Dell Eqlx: Use generic option ssh_timeout  https://review.openstack.org/21265015:29
*** timcl has quit IRC15:30
openstackgerritRajini Ram proposed openstack/cinder: Dell Eqlx: Use generic option ssh_timeout  https://review.openstack.org/21265015:30
jgriffiththingee: were we meeting today or Monday?15:31
*** openstackgerrit has quit IRC15:31
*** openstackgerrit has joined #openstack-cinder15:32
*** jdurgin has joined #openstack-cinder15:32
*** lcurtis has joined #openstack-cinder15:33
thingeejgriffith: we are meeting today15:34
thingeejgriffith: I don't think a calendar invite went out though15:34
jgriffiththingee: it did not, that's why I asked :)15:34
thingeeesker: do you remember when?15:35
jgriffithI suppose we'll miss DuncanT again unless he's around?15:36
*** zhenguo has quit IRC15:43
thingeejgriffith: be on the look out https://review.openstack.org/#/c/104653/15:46
thingee:)15:46
mtaninosmcginnis: Thank you. That comment is funny.15:46
jgriffiththingee: excellent!15:46
jgriffiththingee: although on a Friday may not be such a great idea LOL15:47
thingee+115:47
thingeefriday fun day15:47
jgriffithit's early though,and I have confidence that it'll "just work"15:47
mtaninoLVM Thin Provisioning!15:47
*** rushil has joined #openstack-cinder15:49
thingeesmcginnis: why does this change require fixes in os-brick, but has no dependency? https://review.openstack.org/#/c/197131/315:51
*** jdurgin has quit IRC15:52
*** p0rtal has joined #openstack-cinder15:54
*** p0rtal has quit IRC15:57
*** laughterwym has quit IRC15:58
*** p0rtal has joined #openstack-cinder16:00
*** p0rtal_ has joined #openstack-cinder16:01
*** jistr|mtg is now known as jistr16:03
thingeesmcginnis: alright giving a -1 because I'm confused16:04
*** p0rtal has quit IRC16:05
*** sghanekar_ has joined #openstack-cinder16:05
openstackgerritMitsuhiro Tanino proposed openstack/cinder: [WIP] Allow specified backend capabilities to be retrieved  https://review.openstack.org/21286116:07
*** markus_z has quit IRC16:07
*** markstur has joined #openstack-cinder16:09
*** merooney has joined #openstack-cinder16:09
*** leeantho has joined #openstack-cinder16:12
*** IanGovett1 has joined #openstack-cinder16:14
*** IanGovett has quit IRC16:15
hemna_meeting?16:18
hemna_thingee, I've been emailing the Brocade folks back and forth on their CI reporting issues and trying to get them to see that they aren't actually reporting.16:19
hemna_thingee, so they are trying and are working on it FWIW.16:19
*** IanGovett has joined #openstack-cinder16:20
*** IanGovett1 has quit IRC16:21
*** kashyap has left #openstack-cinder16:21
*** merooney has quit IRC16:21
*** bill_az has joined #openstack-cinder16:22
*** baojg has quit IRC16:23
*** daneyon has joined #openstack-cinder16:23
*** baojg has joined #openstack-cinder16:24
*** merooney has joined #openstack-cinder16:25
*** bkopilov has joined #openstack-cinder16:28
*** baojg has quit IRC16:28
*** IanGovett has quit IRC16:28
*** baojg has joined #openstack-cinder16:29
*** timcl has joined #openstack-cinder16:30
*** IanGovett has joined #openstack-cinder16:31
*** asselin has joined #openstack-cinder16:31
*** apoorvad has joined #openstack-cinder16:31
*** jistr has quit IRC16:32
*** apoorvad has quit IRC16:32
*** apoorvad has joined #openstack-cinder16:33
*** apoorvad has quit IRC16:34
*** baojg has quit IRC16:35
*** apoorvad has joined #openstack-cinder16:36
*** rushil has quit IRC16:37
*** vilobhmm has joined #openstack-cinder16:37
*** rushil has joined #openstack-cinder16:38
*** dflorea has joined #openstack-cinder16:39
*** salv-orlando has quit IRC16:42
*** jecarey has quit IRC16:42
*** sbezverk has quit IRC16:43
*** dflorea has quit IRC16:43
erlonhemna_: ping16:44
*** p0rtal has joined #openstack-cinder16:45
*** dflorea has joined #openstack-cinder16:46
*** dustins has quit IRC16:47
*** IanGovett has quit IRC16:47
*** p0rtal_ has quit IRC16:48
*** p0rtal has quit IRC16:50
*** nzrf has left #openstack-cinder16:50
*** skylerberg has joined #openstack-cinder16:52
*** rushil_ has joined #openstack-cinder16:53
*** mriedem has quit IRC16:53
*** IanGovett has joined #openstack-cinder16:53
*** gouthamr has quit IRC16:54
*** bill_az has quit IRC16:55
openstackgerritJoseph Vokt proposed openstack/cinder: 3PAR: Adding performance metrics to volume status  https://review.openstack.org/20073716:55
*** dustins has joined #openstack-cinder16:55
*** rushil has quit IRC16:56
*** jdurgin has joined #openstack-cinder16:56
*** dub_ has quit IRC16:58
*** Yogi1 has quit IRC16:59
*** _cjones_ has joined #openstack-cinder17:00
*** agarciam has quit IRC17:01
*** vilobhmm has quit IRC17:05
DTadrzakthangp: ping17:07
thangpDTadrzak: hey17:11
DTadrzakthang: Hello. Could take a look on snapshot_obj? I think that we need in method obj_load_attr elif for 'metadata' aren't we?17:11
*** dflorea has quit IRC17:12
thangpDTadrzak: not really, since 'metadata' is always in the expected_attrs for the other calls, it gets loaded by _from_db_object17:13
*** gouthamr has joined #openstack-cinder17:13
thangpDTadrzak: for "completeness", sure...but that section of code will never get used17:13
*** JoseMello has joined #openstack-cinder17:15
*** dflorea has joined #openstack-cinder17:15
*** 17SADBVNB has joined #openstack-cinder17:17
*** david-lyle is now known as cbrown17:17
*** Yogi1 has joined #openstack-cinder17:17
erlonjgriffith: ping17:19
DTadrzakthangp: Well I have a problem when i trying to get a property 'metadata' of snapshot object, then I have following exception: AttributeError: 'Snapshot' object has no attribute '_obj_metadata'17:20
smcginnisthingee: I think that depenency referred to this: https://review.openstack.org/#/c/197624/17:20
smcginnisthingee: That's gone went in, but I don't think Victor had a chance to go back and update17:20
smcginnisthingee: I just rebased it because it had a merge conflict.17:20
thangpDTadrzak: where is that code getting called?17:20
thangpDTadrzak: could you put a snippet in pastebin?17:21
smcginnisthingee: Though looking at it again, not sure why it said it had a depency on anything os-brick related.17:21
*** 17SADBVNB has quit IRC17:21
*** salv-orlando has joined #openstack-cinder17:22
DTadrzakthangp: http://pastebin.com/FxR11aub17:23
thangpDTadrzak: did you give a "metadata" in your test snapshot object?17:24
thingeesmcginnis: ok, lets clear that in the commit msg17:24
*** timcl1 has joined #openstack-cinder17:24
thangpDTadrzak: usually, the db returns a dict for snapshot_metadata17:25
smcginnisthingee: Would we have to revert it? You -1'd it but +A'd it. :)17:25
smcginnisthingee: Merged just a bit ago.17:25
smcginnisthingee: Not sure if it really matters at this point.17:25
DTadrzakthangp:  Well i just change snapshot from db_model to versioned_obj.17:26
thingeesmcginnis: yeah whateva17:27
thangpDTadrzak: snapshot_metadata has to always be present - https://github.com/openstack/cinder/blob/master/cinder/objects/snapshot.py#L12217:27
*** timcl has quit IRC17:27
*** rushil_ has quit IRC17:27
thangpDTadrzak: where is the change?  which line/file?17:27
*** rushil has joined #openstack-cinder17:28
*** ebalduf has joined #openstack-cinder17:28
*** gouthamr has quit IRC17:29
*** ircuser-1 has quit IRC17:30
thangpDTadrzak: is snapshot_ref a versionedobject or something else?17:31
DTadrzakthangp: http://pastebin.com/34g0nUdu there you have an example test17:31
thangpDTadrzak: ok?17:33
thangpDTadrzak: unless you give it somewhere to get the metadata, it will not be able to load metadata17:33
*** p0rtal has joined #openstack-cinder17:34
thangpwhich forces it to go to obj_load_attr17:34
thangpDTadrzak: so to fix it, just give the test object metadata or {}17:35
DTadrzakthangp: ok17:35
DTadrzakthanks ;] BTW good job for "Conversion to volume object" patch I hope that it will be merged soon .17:38
thangpDTadrzak: thx, we shall see17:38
*** timcl1 has quit IRC17:39
*** gouthamr has joined #openstack-cinder17:39
*** gouthamr has quit IRC17:40
*** dflorea has quit IRC17:40
*** gouthamr has joined #openstack-cinder17:40
*** timcl has joined #openstack-cinder17:41
jgriffitherlon: pong17:42
*** patrickeast has joined #openstack-cinder17:44
*** dflorea has joined #openstack-cinder17:50
*** boris-42 has quit IRC17:50
*** bswartz has quit IRC17:54
*** IanGovett1 has joined #openstack-cinder17:56
*** timcl has quit IRC17:58
*** IanGovett has quit IRC17:58
*** crose has joined #openstack-cinder17:58
*** timcl has joined #openstack-cinder17:59
*** annegentle has quit IRC18:00
*** p0rtal_ has joined #openstack-cinder18:02
patrickeasttsekiyama: hey, so for that WIP patch you put up to download the image earlier are you planning to add tests and flesh it out more? i’m happy to help out to get it ready and working asap18:04
*** tim_o has joined #openstack-cinder18:04
*** p0rtal has quit IRC18:05
flip214smcginnis: thanks, I've known that much. The question is: is there a way to pass different *settings* to these instances?18:05
openstackgerritApoorva Deshpande proposed openstack/cinder: Tintri snapshot id  https://review.openstack.org/19882918:06
*** jecarey has joined #openstack-cinder18:10
tsekiyamapatrickeast: yeah, I will move it just after the glance transfer patch and fix some unit test errors today.18:10
patrickeasttsekiyama: awesome18:10
*** vilobhmm has joined #openstack-cinder18:10
patrickeasttsekiyama: let me know if there is anything i can do to help18:11
*** salv-orlando has quit IRC18:11
tsekiyamapatrickeast: great thanks18:11
*** edtubill has quit IRC18:12
*** shyama has quit IRC18:16
openstackgerritPatrick East proposed openstack/cinder: Implement Clone CG in Pure Volume Drivers  https://review.openstack.org/21180318:18
openstackgerritPatrick East proposed openstack/cinder: Fix Pure create volume from cgsnapshot  https://review.openstack.org/21180418:18
*** timcl has quit IRC18:18
*** vokt has joined #openstack-cinder18:22
openstackgerritDaniel Tadrzak proposed openstack/cinder: Cleanup for SnapshotObject  https://review.openstack.org/19834118:25
*** dflorea has quit IRC18:27
*** mriedem has joined #openstack-cinder18:30
*** timcl has joined #openstack-cinder18:33
*** vokt has quit IRC18:34
*** vokt has joined #openstack-cinder18:34
*** timcl has quit IRC18:34
*** vokt_ has joined #openstack-cinder18:38
*** vokt has quit IRC18:38
*** Maike has joined #openstack-cinder18:41
openstackgerritDiem Tran proposed openstack/cinder: Local cache feature of Oracle ZFSSA drivers  https://review.openstack.org/21215518:47
*** timcl has joined #openstack-cinder18:49
*** Maike has quit IRC18:55
*** vokt_ has quit IRC18:55
*** vokt_ has joined #openstack-cinder18:55
*** rushil has quit IRC18:59
smcginnisflip214: The settings are what you put in each configuration section at the bottom.19:02
smcginnisjgriffith: Isn't juno security only at this point?19:03
jgriffithyeah, not sure19:03
jgriffithbut eitther way, at least the guy can pull that patch and apply it himself now19:03
jgriffith:)19:03
smcginnis;)19:03
openstackgerritJohn Griffith proposed openstack/cinder: Update SolidFire driver to pass newer flake8  https://review.openstack.org/21330719:05
smcginnisjgriffith: Which version of flake8 are you running?19:08
jgriffithDOH19:09
jgriffithI meant to put that in the commit mesg19:09
jgriffith2.1.019:09
smcginnisWeird. I have 2.4.1 and running that against the current trunk solidfire.py doesn't complain about anything.19:09
smcginnisjgriffith: Not that it really matters. Changes look fine enough to me.19:09
jgriffithhmmm... wonder if it's another tool that gives it ?19:10
smcginnisHere's my --version output: 2.4.1 (pep8: 1.5.7, hacking.core: 0.0.1, ProxyChecker: 0.0.1, mccabe: 0.3.1, pyflakes: 0.8.1) CPython 2.7.6 on Linux19:10
jgriffithsmcginnis: oh... wait, are you running it through tox or bare?19:10
smcginnisjgriffith: Bare19:10
jgriffithhmm... lemme see19:10
*** Lee1092 has quit IRC19:13
*** esker has quit IRC19:13
jgriffithsmcginnis: http://paste.openstack.org/show/414694/19:13
jgriffithsmcginnis: maybe the pep8 and pyflakes versions?19:14
*** dflorea has joined #openstack-cinder19:14
smcginnispyflakes the same and my pep8 newer. Oh well, doesn't really matter.19:14
smcginnisjgriffith: If you were able to get errors and this fixes it then that's just fine with me.19:15
smcginnisI don't need to repo it.19:15
smcginnisWas just curious if I was missing something.19:15
smcginnisYou have the GitCommit libraries that don't show up in mine. That could be part of it.19:16
openstackgerritJohn Griffith proposed openstack/cinder: Update SolidFire driver to pass newer flake8  https://review.openstack.org/21330719:16
*** dflorea has quit IRC19:19
*** vokt__ has joined #openstack-cinder19:22
*** vokt_ has quit IRC19:22
*** bnemec has quit IRC19:23
*** boris-42 has joined #openstack-cinder19:24
*** vokt__ has quit IRC19:27
*** sghanekar_ has quit IRC19:29
jgriffithsmcginnis: I loaded a bunch of crazy plugins this morning and have this sick vim env now19:31
jgriffithsmcginnis: git plugins, extra linters etc19:31
*** timcl has quit IRC19:32
smcginnisjgriffith: Sweet. Did you finally fix your vimrc errors. :)19:32
jgriffithsmcginnis: the git plugin is kinda cool... shows a running diff view of your changes in a git repo19:32
jgriffithLOL19:32
jgriffiththats' what started this... yes :)19:32
smcginnisjgriffith: What's the name of the git plugin? Sounds useful.19:32
jgriffithfugitive19:33
jgriffithcombined with Git Gutter19:33
smcginnisA Git wrapper so awesome, it should be illegal  - Nice!19:33
jgriffithGit Gutter is the cool one IMO19:34
jgriffithhttps://github.com/airblade/vim-gitgutter19:34
jgriffithNow if I could just figure out what that color scheme is there!!!19:34
smcginnisOoh, nice!19:34
smcginnissublime plugin too.19:35
*** salv-orlando has joined #openstack-cinder19:35
jgriffithBut now I see this:  https://github.com/carlhuda/janus19:35
jgriffithBut I MUST STOP now19:35
jgriffithand do some reall work :)19:35
*** edtubill has joined #openstack-cinder19:35
smcginnisjgriffith: Yeah, before you break your vim config again. Then you'll have another couple years of errors to dismiss. ;)19:36
jgriffithBut I'm trying that this week-end at some point, take a bunch of the things I manually cobbled together19:36
jgriffithhaha!19:36
jgriffithIt's a 3 year minimum for me to fix things like that :)19:36
smcginnishah!19:36
smcginnisJanus looks pretty cool. Good base at least.19:37
*** sghanekar has joined #openstack-cinder19:37
*** eharney has quit IRC19:37
jgriffithWell crap, it has everything I jacked with last night and this morning all right there ready for the taking :(19:37
jgriffithI waste so much time on these little diversions19:38
jgriffithnot trying it now, not trying it now....19:38
smcginnisAt least it's Friday afternoon.19:38
smcginnisSO you can break it real good for Monday morning.19:38
smcginnis:)19:38
*** timcl has joined #openstack-cinder19:40
*** bswartz has joined #openstack-cinder19:48
openstackgerritRichard Hedlind proposed openstack/cinder: Make X-IO volume driver wait for delete volume to complete  https://review.openstack.org/20975719:51
*** delattec has quit IRC19:53
*** jgregor has quit IRC19:53
*** diablo_rojo has left #openstack-cinder19:55
*** daneyon_ has joined #openstack-cinder20:02
*** merooney has quit IRC20:03
*** alejandrito has quit IRC20:04
*** daneyon has quit IRC20:05
*** dflorea has joined #openstack-cinder20:09
*** rushil has joined #openstack-cinder20:12
ameadethingee: forgot to mention in the cinder meeting that i'll be on vacation all next week, will do my best to leave all the API reviews in a good state20:12
*** dflorea has quit IRC20:13
ameadei'll also try to get the fc ci more stable20:14
ameadebeen having a lot of nova issues lately20:14
*** sghanekar has quit IRC20:15
*** martyturner has joined #openstack-cinder20:18
*** martyturner has left #openstack-cinder20:18
*** apoorvad has quit IRC20:18
*** sghanekar has joined #openstack-cinder20:18
*** rushil has quit IRC20:21
*** rushil has joined #openstack-cinder20:22
*** timcl1 has joined #openstack-cinder20:23
*** timcl1 has left #openstack-cinder20:24
*** timcl has quit IRC20:25
*** jecarey has quit IRC20:25
*** vokt__ has joined #openstack-cinder20:26
*** gouthamr has quit IRC20:27
*** vokt__ has quit IRC20:27
*** vokt__ has joined #openstack-cinder20:27
openstackgerritWalter A. Boring IV (hemna) proposed openstack/os-brick: Add rootwrap filters  https://review.openstack.org/20755320:33
*** jgregor has joined #openstack-cinder20:33
*** porrua has quit IRC20:34
*** Yogi1 has quit IRC20:36
openstackgerritJacob Gregor proposed openstack/cinder: Reduced file size to prevent timeout  https://review.openstack.org/21278420:37
*** jgregor has quit IRC20:41
*** jgregor has joined #openstack-cinder20:42
*** vokt__ has quit IRC20:42
*** vokt__ has joined #openstack-cinder20:42
*** akerr has quit IRC20:44
*** dflorea has joined #openstack-cinder20:46
openstackgerritRichard Hedlind proposed openstack/cinder: Make X-IO volume driver wait for delete volume to complete  https://review.openstack.org/20975720:47
*** jgregor has quit IRC20:48
*** eharney has joined #openstack-cinder20:48
*** apoorvad has joined #openstack-cinder20:49
*** jgregor has joined #openstack-cinder20:50
*** rmetcalf has quit IRC20:50
*** raildo is now known as raildo-afk20:53
*** jgregor has quit IRC20:54
*** jgregor has joined #openstack-cinder20:54
*** timcl has joined #openstack-cinder20:55
*** thangp has quit IRC20:55
*** vokt_ has joined #openstack-cinder20:56
*** vokt__ has quit IRC20:56
*** dustins has quit IRC20:58
*** timcl has left #openstack-cinder21:00
*** vokt_ has quit IRC21:03
*** vokt_ has joined #openstack-cinder21:03
openstackgerritRajini Ram proposed openstack/cinder: Dell Eqlx: Use generic option ssh_timeout  https://review.openstack.org/21265021:05
*** bswartz has quit IRC21:08
*** mriedem is now known as mriedem_away21:08
*** mriedem_away has quit IRC21:08
*** jwcroppe_ has joined #openstack-cinder21:11
*** jwcroppe has quit IRC21:13
*** jwcroppe has joined #openstack-cinder21:15
*** jwcroppe_ has quit IRC21:16
*** earlephilhower has joined #openstack-cinder21:16
*** dflorea has quit IRC21:16
openstackgerritTomoki Sekiyama proposed openstack/cinder: Efficient image transfer for Glance cinder store  https://review.openstack.org/20175421:18
openstackgerritTomoki Sekiyama proposed openstack/cinder: [WIP] Enable generic image-volume cache without virtual_size  https://review.openstack.org/21281321:18
openstackgerritTomoki Sekiyama proposed openstack/cinder: Generic image-volume cache  https://review.openstack.org/19579521:18
openstackgerritTomoki Sekiyama proposed openstack/cinder: TemporaryImages to inspect image before conversion  https://review.openstack.org/21334621:18
*** cbrown is now known as david-lyle21:20
*** xyang1 has quit IRC21:21
*** crose has quit IRC21:22
*** jerrygb has joined #openstack-cinder21:23
*** Roamer` has quit IRC21:23
tsekiyamapatrickeast: ^^^ rebased21:23
patrickeasttsekiyama: sweet21:23
*** jungleboyj has quit IRC21:24
*** vokt_ has quit IRC21:25
*** rushil has quit IRC21:27
*** rushil has joined #openstack-cinder21:29
*** jerrygb has quit IRC21:30
patrickeasttsekiyama: if you are cool with it im going to squash whats left in your WIP with the image cache to make that part cleaner, i’ll add you as a co-author on it ;)21:31
patrickeastthat way we can take out all the stuff about virtual_size out of the commit message and what not21:31
tsekiyamapatrickeast: OK, no problem.21:35
*** dflorea has joined #openstack-cinder21:39
*** gouthamr has joined #openstack-cinder21:50
*** gouthamr has quit IRC21:51
*** gouthamr has joined #openstack-cinder21:51
*** jwcroppe_ has joined #openstack-cinder21:55
*** earlephilhower has quit IRC21:56
*** dflorea has quit IRC21:57
*** mylu has joined #openstack-cinder21:57
*** Adriano__ has quit IRC21:57
*** dflorea has joined #openstack-cinder21:57
*** jwcroppe has quit IRC21:58
*** jwcroppe has joined #openstack-cinder21:59
*** jwcroppe_ has quit IRC22:01
*** dflorea_ has joined #openstack-cinder22:02
*** mylu has quit IRC22:02
*** dflorea has quit IRC22:02
*** edtubill has quit IRC22:04
*** gouthamr has quit IRC22:07
*** jgregor has quit IRC22:07
*** mylu has joined #openstack-cinder22:09
*** vokt_ has joined #openstack-cinder22:10
*** dannywilson has quit IRC22:13
*** vokt_ has quit IRC22:14
*** jwcroppe_ has joined #openstack-cinder22:14
*** markvoelker has quit IRC22:15
*** jwcroppe has quit IRC22:16
*** rushil_ has joined #openstack-cinder22:20
*** rushil has quit IRC22:22
*** ganso_ has quit IRC22:25
*** salv-orlando has quit IRC22:25
*** salv-orlando has joined #openstack-cinder22:27
*** mylu has quit IRC22:28
*** lcurtis has quit IRC22:29
*** IanGovett1 has quit IRC22:32
*** marcusvrn has quit IRC22:43
*** JoseMello has quit IRC22:49
*** edmondsw has quit IRC22:51
openstackgerritPatrick East proposed openstack/cinder: Generic image-volume cache  https://review.openstack.org/19579522:51
openstackgerritKurt Martin proposed openstack/cinder: Over subscription for HP 3PAR drivers  https://review.openstack.org/21214422:57
*** sghanekar has quit IRC22:58
*** dflorea_ has quit IRC23:00
*** r-daneel has quit IRC23:01
*** vilobhmm has quit IRC23:02
*** mylu has joined #openstack-cinder23:06
openstackgerritPatrick East proposed openstack/cinder: Implement Clone CG in Pure Volume Drivers  https://review.openstack.org/21180323:13
openstackgerritPatrick East proposed openstack/cinder: Fix Pure create volume from cgsnapshot  https://review.openstack.org/21180423:13
*** dflorea has joined #openstack-cinder23:13
*** patrickeast has quit IRC23:15
*** dflorea_ has joined #openstack-cinder23:17
*** dflorea has quit IRC23:17
*** rushil_ has quit IRC23:18
*** jwcroppe has joined #openstack-cinder23:19
*** rushil has joined #openstack-cinder23:20
*** jwcroppe_ has quit IRC23:21
openstackgerritMike Perez proposed openstack/cinder: Add volume type support to Datera  https://review.openstack.org/21337323:25
*** IanGovett has joined #openstack-cinder23:25
*** julim has quit IRC23:30
*** rushil_ has joined #openstack-cinder23:31
*** markvoelker has joined #openstack-cinder23:31
*** IlyaG has joined #openstack-cinder23:33
*** rushil has quit IRC23:34
*** mylu has quit IRC23:34
*** mylu has joined #openstack-cinder23:35
*** markvoelker has quit IRC23:35
*** IanGovett1 has joined #openstack-cinder23:38
*** breitz has quit IRC23:39
*** breitz has joined #openstack-cinder23:39
*** IanGovett1 has quit IRC23:39
openstackgerritApoorva Deshpande proposed openstack/cinder: Tintri snapshot id  https://review.openstack.org/19882923:40
*** IanGovett has quit IRC23:40
openstackgerritAlex O'Rourke proposed openstack/cinder: 3PAR: Adding Consistency Group Support  https://review.openstack.org/20957823:41

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