*** dubsquared has quit IRC | 00:01 | |
*** renier has quit IRC | 00:03 | |
*** renier has joined #openstack-dev | 00:03 | |
gugl | I am using san.py's HpSanISCSIDriver to do volume-attach. I noticed that if in nova.conf iscsi_helper=tgtadm, then attaching fails and it complains about the following path not found in nova-compute.log /dev/disk/by-path/ip-10.10.220.29:3260-iscsi-iqn.2003-10.com.lefthandnetworks:cloudmgmtgroup1:92:volume-00000042-lun-1 while actual path is /dev/disk/by-path/ip-10.10.220.29:3260-iscsi-iqn.2003-10.com.lefthandnetworks:cloudmgmtgroup1:92:volume | 00:07 |
---|---|---|
gugl | -00000042-lun-0 If I don't set iscsi_helper=tgtadm, then it seems to be ok. Found the following code which does the trick in nova/volume/driver.py in _get_iscsi_properties methodtry: | 00:07 |
gugl | properties['target_lun'] = int(results[2]) | 00:07 |
gugl | except (IndexError, ValueError): | 00:07 |
gugl | if FLAGS.iscsi_helper == 'tgtadm': | 00:07 |
gugl | properties['target_lun'] = 1 | 00:07 |
gugl | else: | 00:07 |
gugl | properties['target_lun'] = 0 | 00:07 |
*** renier has quit IRC | 00:08 | |
gugl | results is like: [u'10.10.220.29:3260.1', u'iqn.2003-10.com.lefthandnetworks:cloudmgmtgroup1:131:volume-0000004c'] so it falls into the exception block...Question for the guru: what is the logic for above code...what does that mean? if I don't set the iscsi_helper, what will be potential problem? | 00:08 |
jgriffith | gugl: irc is tough to parse code in, but I think I know what you're hitting | 00:09 |
jgriffith | gugl: In the HP driver (san.py), line 581 | 00:10 |
jgriffith | Add lun number to the model_update and it should take care of it | 00:10 |
jgriffith | gugl: For example: http://paste.openstack.org/show/21013/ | 00:12 |
*** hemna has quit IRC | 00:12 | |
gugl | ok...I will give it a try...thanks | 00:13 |
jgriffith | gugl: Please let me know, we'll want to fix it in the driver if that addresses it. | 00:13 |
jgriffith | gugl: Problem is I don't know if HP is always Lun 1, or how to get the info from cliq | 00:14 |
gugl | ok. | 00:14 |
gugl | every time attach the actual lun is 0 | 00:15 |
gugl | /dev/disk/by-path/ip-10.10.220.29:3260-iscsi-iqn.2003-10.com.lefthandnetworks:cloudmgmtgroup1:92:volume -00000042-lun-0 | 00:16 |
gugl | for letfhand storage | 00:16 |
gugl | not sure how to get from cliq..will dig moer | 00:17 |
*** Guest_ has quit IRC | 00:19 | |
jgriffith | gugl: Yeah, it might be static ( 0 or 1) I don't know. I can find out tomorrow probably | 00:19 |
gugl | ok.tks | 00:20 |
jgriffith | gugl: You can try hardcoding for your testing/work now and make sure everything works | 00:20 |
jgriffith | gugl: Then if you wouldn't mind, probably should file a bug against it | 00:20 |
gugl | ok. | 00:20 |
jgriffith | gugl: I'm out for now, but will be back later | 00:20 |
gugl | sure. talk you later | 00:20 |
*** littleidea has quit IRC | 00:21 | |
*** epim has quit IRC | 00:22 | |
*** littleidea has joined #openstack-dev | 00:22 | |
openstackgerrit | A change was merged to openstack/nova: Fix aggregate_hosts.host migration for sqlite https://review.openstack.org/13311 | 00:33 |
*** Ruetobas has joined #openstack-dev | 00:34 | |
*** dolphm_ has joined #openstack-dev | 00:36 | |
*** renier has joined #openstack-dev | 00:40 | |
*** s0mik has quit IRC | 00:44 | |
*** lloydde has joined #openstack-dev | 00:45 | |
*** renier has quit IRC | 00:45 | |
*** jog0 has quit IRC | 00:47 | |
*** Mandell has quit IRC | 00:50 | |
*** lloydde has quit IRC | 01:01 | |
*** darjeeli_ is now known as darjeeling | 01:01 | |
*** jemartin has joined #openstack-dev | 01:02 | |
*** ywu_ has quit IRC | 01:02 | |
*** ywu_ has joined #openstack-dev | 01:03 | |
*** littleidea has quit IRC | 01:09 | |
*** ywu_ has quit IRC | 01:10 | |
*** ywu_ has joined #openstack-dev | 01:10 | |
*** ncode has quit IRC | 01:13 | |
openstackgerrit | A change was merged to openstack/nova: No stack trace on bad nova aggregate-* command https://review.openstack.org/13322 | 01:18 |
*** alunduil has joined #openstack-dev | 01:18 | |
*** Tross has quit IRC | 01:19 | |
*** Guest_ has joined #openstack-dev | 01:23 | |
*** Maggie has joined #openstack-dev | 01:23 | |
*** edygarcia has joined #openstack-dev | 01:24 | |
*** edygarcia has joined #openstack-dev | 01:25 | |
openstackgerrit | A change was merged to openstack/nova: Update 'unlimited' quota value to '-1' in db https://review.openstack.org/13187 | 01:25 |
*** hemna has joined #openstack-dev | 01:25 | |
*** otter2 has joined #openstack-dev | 01:25 | |
*** otter1 has quit IRC | 01:26 | |
*** sdake has quit IRC | 01:27 | |
*** pixelbeat has quit IRC | 01:27 | |
*** Diopter has quit IRC | 01:30 | |
*** jtran has quit IRC | 01:32 | |
*** winston-d has joined #openstack-dev | 01:32 | |
*** renier has joined #openstack-dev | 01:35 | |
*** zyluo has joined #openstack-dev | 01:35 | |
clayg | vishy: thanks for the quick feedback on fixing bug #1053181, but I don't know how to sync openstack.common.policy to replace cinder.common.policy, and as with your fix for bug #1053181 for nova, most of the changes are in cinder.policy and cinder.context (similar to nova.context and nova.policy) so hopefully the openstack.common merge would just be an addative step once gets the KeyError fix for when the target resource doesn't def | 01:36 |
uvirtbot | Launchpad bug 1053181 in cinder "cinder admin based on hard-coded 'admin' role" [Undecided,In progress] https://launchpad.net/bugs/1053181 | 01:36 |
vishy | clayg: the proper fix isn't to handle key_error but i guess that can be done separately | 01:36 |
clayg | if I have generic rule ['blah:%(blah)s'] and the target I'm acting on doesn't define blah, is it not reasonable to say I don't match that rule? | 01:37 |
*** jog0 has joined #openstack-dev | 01:38 | |
clayg | vishy: well perhaps I could accomidate the openstack.common.policy merge, I'm just not fimiliar with the process, and this is a critical bug for me - so I did what I saw as a reasonable fix | 01:38 |
vishy | clayg: there is a script in common to sync | 01:38 |
*** wenjianhn has joined #openstack-dev | 01:39 | |
clayg | vishy: thanks, that will be a good place for me to start I'm sure, hopefully it's simple... | 01:39 |
vishy | you just add policy to openstack-common.conf | 01:39 |
*** renier has quit IRC | 01:39 | |
vishy | run the script add the file and propose | 01:39 |
clayg | but me thinks not tonite :) | 01:39 |
vishy | you will have to change the import in cinder/policy.py | 01:39 |
*** jog0 has quit IRC | 01:40 | |
*** Tross has joined #openstack-dev | 01:40 | |
vishy | clayg: note my note: https://github.com/openstack/nova/blob/master/nova/policy.py | 01:40 |
vishy | i think that might be the issue you are running into | 01:40 |
vishy | clayg: which is fixed in common now | 01:40 |
vishy | https://bugs.launchpad.net/openstack-common/+bug/1039132 | 01:40 |
uvirtbot | Launchpad bug 1039132 in openstack-common "Policy checking fails against non-strings" [Undecided,Fix committed] | 01:40 |
vishy | clayg: unless there is some other odd reason you are getting a KeyError | 01:41 |
vishy | but if you are, it needs to be fixed in common so hacking it into cinder's copy is bad | 01:41 |
clayg | vishy: in my test, I wanted to see what happened when I didn't have a 'context_is_admin' rule, and I got a KeyError when it fell to the default rule (admin_or_owner) and tried to apply the empty target_dict to the 'project_id:%(project_id)s' rule | 01:43 |
*** tgall_foo has joined #openstack-dev | 01:44 | |
*** tgall_foo has quit IRC | 01:44 | |
*** tgall_foo has joined #openstack-dev | 01:44 | |
vishy | that makes sense. I guess you do need that context_is_admin rule in there | 01:44 |
vishy | or else we could throw in a dictionary with the project_id | 01:44 |
vishy | clayg: I don't think we should hide the keyerror though because that usually means a mistyped match string | 01:46 |
clayg | vishy: I thought about that too! but couldn't come up with a good value for project_id that I was sure would always fail once it got converted to a string. | 01:46 |
vishy | clayg: gotta go now, have to discuss later | 01:47 |
clayg | fwiw, i verified the KeyError if you remove the 'context_is_admin' rule from /etc/nova/policy.json, I can see the potential for a mistype in policy.json passing silently, but I'm not sure an unhandled exception is better than maybe a log msg... | 01:50 |
clayg | other mistypes (e.g. [role:admni]) would just fail to match | 01:51 |
*** PotHix has quit IRC | 01:56 | |
*** willfu has joined #openstack-dev | 01:58 | |
openstackgerrit | A change was merged to openstack/nova: Send api.fault notification on API service faults. https://review.openstack.org/13288 | 01:59 |
*** sunilthaha has joined #openstack-dev | 02:01 | |
openstackgerrit | A change was merged to openstack/nova: Always yield to other greenthreads after database calls https://review.openstack.org/13300 | 02:03 |
*** edygarcia has quit IRC | 02:04 | |
*** dolphm_ has quit IRC | 02:08 | |
*** Ryan_Lane has quit IRC | 02:11 | |
openstackgerrit | A change was merged to openstack/nova: Fix marker pagination for /servers https://review.openstack.org/13302 | 02:13 |
*** willfu has quit IRC | 02:17 | |
*** waa has quit IRC | 02:18 | |
*** waa has joined #openstack-dev | 02:18 | |
openstackgerrit | A change was merged to openstack/nova: fix unused import https://review.openstack.org/13277 | 02:19 |
openstackgerrit | A change was merged to openstack/nova: Add lookup by ip via Quantum for metadata service. https://review.openstack.org/13218 | 02:21 |
*** jemartin has quit IRC | 02:22 | |
*** sunxin has joined #openstack-dev | 02:22 | |
*** willfu has joined #openstack-dev | 02:22 | |
*** willfu has quit IRC | 02:23 | |
*** edygarcia has joined #openstack-dev | 02:25 | |
*** koolhead17 has joined #openstack-dev | 02:30 | |
*** Gordonz has joined #openstack-dev | 02:33 | |
*** adalbas has quit IRC | 02:37 | |
*** edygarcia has quit IRC | 02:39 | |
*** winston-d has quit IRC | 02:42 | |
*** gongysh has quit IRC | 02:42 | |
*** openstackjenkins has quit IRC | 02:42 | |
*** mmalesky has quit IRC | 02:42 | |
*** esheffield has quit IRC | 02:42 | |
*** metral has quit IRC | 02:42 | |
*** jgriffith has quit IRC | 02:42 | |
*** creiht has quit IRC | 02:42 | |
*** harlowja has quit IRC | 02:42 | |
*** markwash has quit IRC | 02:42 | |
*** clayg has quit IRC | 02:42 | |
*** winston-d has joined #openstack-dev | 02:48 | |
*** gongysh has joined #openstack-dev | 02:48 | |
*** openstackjenkins has joined #openstack-dev | 02:48 | |
*** mmalesky has joined #openstack-dev | 02:48 | |
*** esheffield has joined #openstack-dev | 02:48 | |
*** metral has joined #openstack-dev | 02:48 | |
*** jgriffith has joined #openstack-dev | 02:48 | |
*** creiht has joined #openstack-dev | 02:48 | |
*** harlowja has joined #openstack-dev | 02:48 | |
*** markwash has joined #openstack-dev | 02:48 | |
*** clayg has joined #openstack-dev | 02:48 | |
*** zelazny.freenode.net sets mode: +v creiht | 02:48 | |
*** Gordonz has quit IRC | 02:50 | |
*** jemartin has joined #openstack-dev | 02:53 | |
*** titankiller has quit IRC | 02:54 | |
*** Gordonz has joined #openstack-dev | 02:57 | |
*** sunilthaha has quit IRC | 03:10 | |
*** sunilthaha has joined #openstack-dev | 03:12 | |
openstackgerrit | A change was merged to openstack/cinder: Add nova migrate_version check to cinder import https://review.openstack.org/13223 | 03:15 |
*** zbitter has joined #openstack-dev | 03:16 | |
*** Ryan_Lane has joined #openstack-dev | 03:18 | |
*** zaneb has quit IRC | 03:20 | |
*** zaitcev has quit IRC | 03:21 | |
*** novas0x2a|laptop has quit IRC | 03:23 | |
*** Guest_ has quit IRC | 03:25 | |
*** Mandell has joined #openstack-dev | 03:27 | |
*** Tross has quit IRC | 03:27 | |
*** Tross has joined #openstack-dev | 03:28 | |
*** Diopter has joined #openstack-dev | 03:30 | |
*** Tross has quit IRC | 03:30 | |
*** ywu_ has quit IRC | 03:30 | |
*** s0mik has joined #openstack-dev | 03:33 | |
*** jemartin has quit IRC | 03:34 | |
*** Tross has joined #openstack-dev | 03:39 | |
*** littleidea has joined #openstack-dev | 03:39 | |
*** reed has quit IRC | 03:44 | |
*** reed has joined #openstack-dev | 03:44 | |
*** Gordonz has quit IRC | 03:46 | |
*** markmcclain has joined #openstack-dev | 03:48 | |
*** garyk has quit IRC | 03:49 | |
openstackgerrit | A change was merged to openstack/nova: Properly create and delete Aggregates https://review.openstack.org/13241 | 03:57 |
*** nunosantos has quit IRC | 04:04 | |
*** sdake has joined #openstack-dev | 04:04 | |
*** renier has joined #openstack-dev | 04:17 | |
*** renier has quit IRC | 04:22 | |
*** garyk has joined #openstack-dev | 04:42 | |
*** tgall_foo has quit IRC | 04:52 | |
*** hattwick has quit IRC | 05:00 | |
*** gongysh has quit IRC | 05:00 | |
*** littleidea has quit IRC | 05:02 | |
*** danwent has joined #openstack-dev | 05:03 | |
*** Guest__ has joined #openstack-dev | 05:03 | |
*** littleidea has joined #openstack-dev | 05:03 | |
*** Jabadia has joined #openstack-dev | 05:04 | |
openstackgerrit | A change was merged to openstack/cinder: Correct IetAdm remove_iscsi_target https://review.openstack.org/13297 | 05:05 |
Jabadia | I've got few questions, I'll give it a shoot here | 05:06 |
Jabadia | what Phthon version should I have ? Is 2.6 good ? | 05:06 |
*** koolhead17 has quit IRC | 05:07 | |
openstackgerrit | A change was merged to openstack/python-novaclient: expose os-networks extension to CLI https://review.openstack.org/12744 | 05:07 |
notmyname | Jabadia: what part of openstack are you looking at? for example, python 2.6 is fine for swift | 05:08 |
Jabadia | Swift, sorry | 05:08 |
notmyname | Jabadia: ah, then yes, python 2.6 is fine | 05:08 |
Jabadia | Thanks, I have this problem while trying to execute startmain - | 05:09 |
Jabadia | account-server running (7797 - /etc/swift/account-server/4.conf) | 05:09 |
Jabadia | account-server already started... | 05:09 |
Jabadia | Starting object-server...(/etc/swift/object-server/1.conf) | 05:09 |
Jabadia | swift-object-server does not exist | 05:09 |
Jabadia | Traceback (most recent call last): | 05:09 |
Jabadia | full trace in http://justpaste.it/1bvj | 05:10 |
Jabadia | any idea? | 05:10 |
notmyname | Jabadia: ya, we should be able to fix that | 05:11 |
Jabadia | Awesome | 05:11 |
notmyname | Jabadia: how did you install swift? from source or from a package? | 05:11 |
Jabadia | using the SAIO page | 05:11 |
*** renier has joined #openstack-dev | 05:11 | |
Jabadia | package + some git | 05:11 |
Jabadia | I'm on Redhat | 05:11 |
notmyname | ok | 05:11 |
Jabadia | ( http://docs.openstack.org/developer/swift/development_saio.html ) | 05:12 |
*** hattwick has joined #openstack-dev | 05:12 | |
notmyname | Jabadia: so I'm guessing that the packages you installed (with yum up at the top of that page) are conflicting with the install-from-code you did (`python setup.py develop`) | 05:14 |
notmyname | Jabadia: so my first guess is to remove the swift-specific rpms | 05:14 |
Jabadia | ok, so you say, go with compiling the source ? | 05:15 |
Jabadia | remove what yum installed ? | 05:15 |
notmyname | Jabadia: ya, that's my guess. I normally test and target ubuntu, so I'm not as familiar with fedora | 05:15 |
*** renier has quit IRC | 05:16 | |
Jabadia | removing | 05:16 |
Jabadia | where do I get the source from now ? | 05:16 |
Jabadia | ( all has been removed. ) | 05:16 |
Jabadia | yum remove openstack-swift openstack-swift-proxy openstack-swift-account openstack-swift-container openstack-swift-object | 05:16 |
notmyname | Jabadia: but overall, here's the issue: you have a reference to proxy-logging in your proxy config (this is ok), but that isn't installed (or at least detected). proxy-logging is a fairly recent change, and the rpms you installed may not reflect it | 05:17 |
Jabadia | I see | 05:17 |
notmyname | Jabadia: and, if the setup.py develop is added later in the PATH, then you'd never see the new code | 05:17 |
Jabadia | ok, makes sense | 05:17 |
Jabadia | I just need to have a dev env for testing | 05:18 |
Jabadia | I though would be easiest follow the SAIO page | 05:18 |
notmyname | Jabadia: ya, that's a great place to start | 05:18 |
Jabadia | what would you suggest ? | 05:18 |
notmyname | Jabadia: what's your overall goal? | 05:18 |
Jabadia | have an Swift environment. to be used with cloudstack ( for sec. stogage ) and for creating object storage. | 05:19 |
Jabadia | its for Dev purpose at this stage. | 05:19 |
Jabadia | just need an env. | 05:19 |
Jabadia | (should though be on RH ) | 05:20 |
notmyname | Jabadia: the SAIO is great for dev work and functional testing. of course, when you get into actual POC work, then you should use more dedicated hardware. | 05:21 |
notmyname | Jabadia: if you're using cloudstack, you'd probably be interested in https://github.com/cloudops/cs_auth | 05:21 |
Jabadia | so, as you noticed, I was trying to use SAIO .. | 05:21 |
*** reed has quit IRC | 05:22 | |
notmyname | Jabadia: there's nothing wrong with using the SAIO. just realize the limits. you are running multiple servers on one box (normally virtualized) and are simulating drives. so therefore IO performance is somewhat lacking | 05:24 |
*** gongysh has joined #openstack-dev | 05:24 | |
Jabadia | I understand, at this stage of development, I assume that will be fine. just that I failed to go through SAIO | 05:25 |
notmyname | ya, I should ask zaitcev about it when he gets online | 05:25 |
Jabadia | Great | 05:26 |
Jabadia | Thanks notmyname | 05:26 |
notmyname | Jabadia: np. did removing the packages work? | 05:26 |
Jabadia | Well its removed | 05:27 |
Jabadia | Waiting for further instructions :) | 05:27 |
*** zbitter has quit IRC | 05:27 | |
notmyname | ah, sorry. you should be able to `startmain` now | 05:27 |
notmyname | assuming you did all the other steps | 05:27 |
Jabadia | hmm | 05:27 |
Jabadia | "/root/bin/startmain: line 3: swift-init: command not found" | 05:28 |
Jabadia | I just uninstalled it, didn't I ? | 05:28 |
*** mattstep has quit IRC | 05:28 | |
notmyname | you cloned the swift codebase, right? | 05:28 |
Jabadia | yep - 'git clone https://github.com/openstack/swift.git' | 05:28 |
notmyname | ok, good. cd into there and `sudo python ./setup.py develop` | 05:29 |
Jabadia | ok, looking good | 05:29 |
Jabadia | startmain ? | 05:29 |
notmyname | yup | 05:29 |
Jabadia | https://gist.github.com/abec66a54dfed83fa1b7 | 05:30 |
Jabadia | in short - No module named deploy | 05:31 |
*** ywu_ has joined #openstack-dev | 05:31 | |
notmyname | Jabadia: hmm..I wonder if this means the dependencies weren't added (or were removed when you removed the packages) | 05:32 |
notmyname | Jabadia: int he ubuntu/debian world, the package is "python-pastedeploy" | 05:33 |
Jabadia | let me search | 05:33 |
notmyname | Jabadia: on the SAIO page, note the differences in the ubuntu and fedora instructions. the ubuntu ones install the packages for dependencies but leave the swift install for the code. the fedora ones use packages that, I assume, include or reference the dependencies | 05:34 |
*** mattstep has joined #openstack-dev | 05:34 | |
Jabadia | ok | 05:34 |
Jabadia | found this rpm - python-paste-deploy | 05:34 |
Jabadia | Installing | 05:34 |
Jabadia | damn | 05:35 |
Jabadia | Package python-paste-deploy1.5-1.5.0-5.el6.noarch already installed and latest version | 05:35 |
*** ywu_ has quit IRC | 05:36 | |
*** hemna has quit IRC | 05:37 | |
notmyname | Jabadia: any chance you could be around tomorrow during the day, US time? I'd ask zaitcev since he updated the docs for fedora | 05:39 |
Jabadia | I'll do my best. thanks | 05:39 |
Jabadia | Hey | 05:42 |
Jabadia | I did pip-python install --upgrade PasteDeploy | 05:42 |
Jabadia | now I have move to another err :) | 05:42 |
Jabadia | Making progress | 05:42 |
*** littleidea has quit IRC | 05:42 | |
*** Jabadia has quit IRC | 05:44 | |
*** s0mik has quit IRC | 05:46 | |
*** torandu has quit IRC | 05:49 | |
*** mmalesky has quit IRC | 05:52 | |
*** davidkranz has quit IRC | 05:53 | |
*** Shrews has quit IRC | 05:53 | |
*** littleidea has joined #openstack-dev | 05:55 | |
openstackgerrit | A change was merged to openstack/nova: Call compute manager methods with instance as keyword argument https://review.openstack.org/13317 | 05:56 |
openstackgerrit | A change was merged to openstack/nova: Clean up test_state_revert https://review.openstack.org/13318 | 05:56 |
*** s0mik has joined #openstack-dev | 05:59 | |
*** salv-orlando has joined #openstack-dev | 06:03 | |
*** markmcclain has quit IRC | 06:05 | |
*** renier has joined #openstack-dev | 06:05 | |
*** mindpixel has joined #openstack-dev | 06:10 | |
*** renier has quit IRC | 06:10 | |
*** mrunge has joined #openstack-dev | 06:12 | |
*** Shrews has joined #openstack-dev | 06:12 | |
*** davidkranz has joined #openstack-dev | 06:12 | |
*** Guest__ has quit IRC | 06:17 | |
*** almaisan-away is now known as al-maisan | 06:19 | |
*** kbringard has joined #openstack-dev | 06:22 | |
*** kbringard has quit IRC | 06:23 | |
*** littleidea has quit IRC | 06:25 | |
*** GheRivero has joined #openstack-dev | 06:26 | |
*** s0mik has quit IRC | 06:35 | |
*** eglynn has quit IRC | 06:42 | |
*** winston-d has quit IRC | 06:42 | |
*** rafaduran has joined #openstack-dev | 06:47 | |
*** Mandell has quit IRC | 06:53 | |
*** salv-orlando has quit IRC | 06:53 | |
*** Mandell has joined #openstack-dev | 06:57 | |
*** kbringard has joined #openstack-dev | 06:58 | |
*** eglynn has joined #openstack-dev | 06:58 | |
zykes- | Kiall: morning | 06:59 |
zykes- | eyy notmyname ;) | 06:59 |
*** renier has joined #openstack-dev | 07:00 | |
*** renier has quit IRC | 07:04 | |
*** erikz_ has joined #openstack-dev | 07:05 | |
*** erikzaadi has quit IRC | 07:08 | |
*** erikz_ has quit IRC | 07:09 | |
*** reidrac has joined #openstack-dev | 07:26 | |
*** ywu_ has joined #openstack-dev | 07:32 | |
*** alexpilotti has joined #openstack-dev | 07:34 | |
*** alexpilotti has quit IRC | 07:36 | |
*** ywu_ has quit IRC | 07:36 | |
*** eglynn has quit IRC | 07:39 | |
*** alunduil has quit IRC | 07:39 | |
*** zing_ has joined #openstack-dev | 07:40 | |
*** alunduil has joined #openstack-dev | 07:41 | |
*** EmilienM has joined #openstack-dev | 07:41 | |
*** apevec has joined #openstack-dev | 07:41 | |
*** apevec has joined #openstack-dev | 07:41 | |
*** amotoki has joined #openstack-dev | 07:41 | |
*** mnewby has joined #openstack-dev | 07:43 | |
*** gongysh has quit IRC | 07:44 | |
openstackgerrit | A change was merged to openstack/glance: Ensure glance-api application is "greened" https://review.openstack.org/13279 | 07:45 |
openstackgerrit | A change was merged to openstack/nova: Adds deserialization for block_device_mapping https://review.openstack.org/13243 | 07:48 |
openstackgerrit | A change was merged to openstack/nova: Fix bugs in resource tracker and cleanup https://review.openstack.org/13182 | 07:48 |
*** al-maisan is now known as almaisan-away | 07:53 | |
*** alexpilotti has joined #openstack-dev | 07:54 | |
*** almaisan-away is now known as al-maisan | 07:57 | |
zykes- | Where can I get in otuch with Yong Sheng gong ? | 07:59 |
*** eglynn has joined #openstack-dev | 08:00 | |
*** sunilthaha has quit IRC | 08:06 | |
*** mnewby has quit IRC | 08:09 | |
*** mnewby has joined #openstack-dev | 08:10 | |
zyluo | zykes-, he's not around IRC that much. gongysh@cn.ibm.com | 08:15 |
*** darraghb has joined #openstack-dev | 08:18 | |
*** Ryan_Lane has quit IRC | 08:21 | |
*** maploin has joined #openstack-dev | 08:31 | |
*** maploin has quit IRC | 08:31 | |
*** maploin has joined #openstack-dev | 08:31 | |
*** pixelbeat has joined #openstack-dev | 08:32 | |
*** mnewby has quit IRC | 08:33 | |
*** zyluo has quit IRC | 08:39 | |
*** Kiall is now known as zz_Kiall | 08:41 | |
*** danpb has joined #openstack-dev | 08:44 | |
*** zz_Kiall is now known as Kiall | 08:48 | |
*** derekh has joined #openstack-dev | 08:48 | |
*** Ryan_Lane has joined #openstack-dev | 08:54 | |
*** larsbutler has quit IRC | 08:58 | |
*** sandywalsh_ has quit IRC | 09:22 | |
*** Ryan_Lane has quit IRC | 09:29 | |
*** larsbutler has joined #openstack-dev | 09:31 | |
*** ywu_ has joined #openstack-dev | 09:32 | |
*** ywu_ has quit IRC | 09:36 | |
*** otter1 has joined #openstack-dev | 09:50 | |
*** otter2 has quit IRC | 09:51 | |
*** tott has joined #openstack-dev | 09:56 | |
*** amotoki has quit IRC | 09:59 | |
*** waa has quit IRC | 10:04 | |
*** markmc has joined #openstack-dev | 10:05 | |
*** kyriakos has joined #openstack-dev | 10:10 | |
*** sunxin has quit IRC | 10:14 | |
*** rkukura has quit IRC | 10:24 | |
*** m4xmr has joined #openstack-dev | 10:49 | |
*** Maggie has quit IRC | 10:49 | |
*** m4xmr has left #openstack-dev | 10:49 | |
*** gongysh has joined #openstack-dev | 10:50 | |
*** Abhilash has joined #openstack-dev | 11:19 | |
*** mnewby has joined #openstack-dev | 11:26 | |
*** wenjianhn has quit IRC | 11:28 | |
*** ywu_ has joined #openstack-dev | 11:33 | |
*** ywu_ has quit IRC | 11:37 | |
*** dprince has joined #openstack-dev | 11:37 | |
*** adalbas has joined #openstack-dev | 11:39 | |
*** salv-orlando has joined #openstack-dev | 11:44 | |
*** maurosr has joined #openstack-dev | 11:44 | |
*** markvoelker has joined #openstack-dev | 11:48 | |
*** renier has joined #openstack-dev | 11:48 | |
*** mrunge has quit IRC | 11:49 | |
*** zul has quit IRC | 11:58 | |
*** zul has joined #openstack-dev | 12:00 | |
*** matiu has quit IRC | 12:05 | |
*** alunduil has quit IRC | 12:11 | |
*** mnewby has quit IRC | 12:14 | |
*** waa has joined #openstack-dev | 12:22 | |
*** dprince has quit IRC | 12:24 | |
*** darjeeling has quit IRC | 12:24 | |
*** renier_ has joined #openstack-dev | 12:32 | |
*** renier has quit IRC | 12:32 | |
zul | ttx: ping | 12:32 |
ttx | zuy: pong | 12:33 |
ttx | zul^ | 12:33 |
zul | ttx: for the sigpipe stuff you are going to do the same for quantum as well? | 12:33 |
ttx | trying. it's a lot harder there, they use Popen all over the place | 12:33 |
ttx | will do quantum-rootwrap at least | 12:34 |
*** darjeeling has joined #openstack-dev | 12:35 | |
openstackgerrit | A change was merged to openstack/nova: Cleanup unused import in manager.py https://review.openstack.org/13276 | 12:37 |
zykes- | anyone know what tool is used for this: https://www.ibm.com/developerworks/mydeveloperworks/blogs/e93514d3-c4f0-4aa0-8844-497f370090f5/resource/BLOGS_UPLOADED_IMAGES/Openstackarchi_1.png | 12:38 |
zul | ttx: cool | 12:43 |
*** m4xmr has joined #openstack-dev | 12:43 | |
*** m4xmr has left #openstack-dev | 12:44 | |
garyk | ttx: ping | 12:51 |
openstackgerrit | A change was merged to openstack/python-quantumclient: clean the descriptions for quota cli commands. https://review.openstack.org/13323 | 12:52 |
ttx | garyk: pong | 12:52 |
garyk | ttx: do you want me to take care of 1053364 in quantum? | 12:52 |
ttx | garyk: done | 12:52 |
ttx | though I don't cover rogue calls, that's bug 1053381 | 12:52 |
uvirtbot | Launchpad bug 1053381 in quantum "All subprocess.Popen calls should go through common function" [Undecided,New] https://launchpad.net/bugs/1053381 | 12:52 |
ttx | garyk: see https://review.openstack.org/13348 | 12:53 |
garyk | ttx: ok | 12:53 |
ttx | garyk: for the record, I'm not sure that's Folsom material | 12:53 |
ttx | that sounds a bit... dangerous | 12:53 |
*** eglynn_ has joined #openstack-dev | 12:54 | |
*** eglynn has quit IRC | 12:54 | |
ttx | maybe a good stable/folsom patch if it lives in grizzly well for a while | 12:54 |
garyk | ttx: ok, sounds reasonable. | 12:54 |
*** adalbas has quit IRC | 12:54 | |
ttx | garyk: we'll see how much the PTLs want it | 12:55 |
garyk | ttx: ok. it may be risky at this late stage but i guess that if it works then it should be ok | 12:55 |
ttx | garyk: added folsom-rc-potential tag so that it comes up in future discussions | 12:55 |
garyk | ttx: ok, thanks | 12:56 |
*** Guest____ has joined #openstack-dev | 12:57 | |
*** matiu has joined #openstack-dev | 12:58 | |
*** matiu has quit IRC | 12:58 | |
*** matiu has joined #openstack-dev | 12:58 | |
*** littleidea has joined #openstack-dev | 12:58 | |
*** rkukura has joined #openstack-dev | 12:58 | |
*** Tross has left #openstack-dev | 12:59 | |
*** zaneb has joined #openstack-dev | 12:59 | |
*** renier_ has quit IRC | 13:02 | |
*** gael has joined #openstack-dev | 13:04 | |
*** gael has quit IRC | 13:05 | |
*** gael has joined #openstack-dev | 13:05 | |
*** alunduil has joined #openstack-dev | 13:07 | |
*** alunduil has quit IRC | 13:08 | |
*** alunduil has joined #openstack-dev | 13:09 | |
*** eharney has joined #openstack-dev | 13:09 | |
*** renier has joined #openstack-dev | 13:10 | |
*** kbringard has joined #openstack-dev | 13:11 | |
*** cmagina has joined #openstack-dev | 13:14 | |
*** samkottler is now known as samkotttler|out | 13:15 | |
*** rpedde_away is now known as rpedde | 13:17 | |
*** nunosantos has joined #openstack-dev | 13:20 | |
*** zul has quit IRC | 13:20 | |
*** zul has joined #openstack-dev | 13:21 | |
*** dprince has joined #openstack-dev | 13:21 | |
*** renier has quit IRC | 13:23 | |
*** adalbas has joined #openstack-dev | 13:27 | |
ttx | garyk: ping | 13:27 |
garyk | ttx: pong | 13:28 |
ttx | Previously filed https://bugs.launchpad.net/quantum/+bug/1053381 | 13:28 |
uvirtbot | Launchpad bug 1053381 in quantum "All subprocess.Popen calls should go through common function" [Undecided,New] | 13:28 |
ttx | there is a bit more than just two places calling Popen in Quantum code | 13:28 |
ttx | not sure how much the others can go through common functions though | 13:28 |
ttx | might want to mark yours as duplicate of this one | 13:29 |
ttx | or add a bit to yours and mark this one as dupe | 13:29 |
ttx | garyk: ^ | 13:29 |
*** tgall_foo has joined #openstack-dev | 13:29 | |
*** tgall_foo has quit IRC | 13:29 | |
*** tgall_foo has joined #openstack-dev | 13:29 | |
*** renier has joined #openstack-dev | 13:30 | |
*** krtaylor has joined #openstack-dev | 13:30 | |
garyk | ttx: at the moment there are 3 places where execute are called. i opened a bug to remove one of the places. i guess that you saw this. i prefer to keep them separate in the case that we decide to add your patch to a rc candidate | 13:32 |
garyk | ttx: in addition to this i think that we should move the rootwrap code to common. the execute too :) | 13:32 |
*** Abhilash has quit IRC | 13:32 | |
*** ywu_ has joined #openstack-dev | 13:33 | |
ttx | garyk: that's the plan for grizzly, yes | 13:33 |
*** mrodden has joined #openstack-dev | 13:33 | |
ttx | garyk: your bug still duplicates part of mine. I'll remove the part you're covering in yours then | 13:34 |
ttx | i.e. limit it to the quantum/plugins/cisco calls | 13:34 |
garyk | ttx: i think that you should leave yours unchanged. i'll merge when yours is approved | 13:35 |
ttx | garyk: err... I'm talking about bug 1053381, not the SIGPIPE stuff | 13:35 |
uvirtbot | Launchpad bug 1053381 in quantum "All subprocess.Popen calls should go through common function" [Undecided,New] https://launchpad.net/bugs/1053381 | 13:35 |
ttx | this one I'm not working on yet | 13:35 |
ttx | it's purely about duplication of Popen calls | 13:36 |
ttx | (like yours) | 13:36 |
*** eglynn_ has quit IRC | 13:36 | |
*** eglynn_ has joined #openstack-dev | 13:36 | |
ttx | garyk: not sure we are talking about the same thing ? | 13:36 |
*** gongysh has quit IRC | 13:37 | |
*** ywu_ has quit IRC | 13:37 | |
salv-orlando | tax, garyk: probably it's not duplication - the two bugs are probably contradictory. Bug 1053381 mentions we should use the function bug 1053393 is removing. | 13:39 |
uvirtbot | Launchpad bug 1053381 in quantum "All subprocess.Popen calls should go through common function" [Undecided,New] https://launchpad.net/bugs/1053381 | 13:39 |
uvirtbot | Launchpad bug 1053393 in quantum "Remove duplicate execute function" [Undecided,New] https://launchpad.net/bugs/1053393 | 13:39 |
*** gongysh has joined #openstack-dev | 13:40 | |
*** japage has joined #openstack-dev | 13:41 | |
ttx | salv-orlando: ok, I guess they are slightly different. One is about duplication of execute(), the other about making all Popen calls go through a common function | 13:41 |
ttx | don't really care which one it is as long as there is only one | 13:41 |
*** sandywalsh has joined #openstack-dev | 13:41 | |
salv-orlando | ttx: ok, so it looks easy | 13:42 |
garyk | ttx: salv-orlando in a meeting at the moment | 13:45 |
*** apevec has quit IRC | 13:48 | |
*** errr has quit IRC | 13:48 | |
*** mtreinish has joined #openstack-dev | 13:49 | |
*** cmagina_ has joined #openstack-dev | 13:50 | |
*** cmagina has quit IRC | 13:50 | |
*** cmagina_ is now known as cmagina | 13:51 | |
*** e1mer has quit IRC | 13:53 | |
*** adalbas has quit IRC | 13:58 | |
*** tgall_foo has quit IRC | 14:02 | |
*** edygarcia has joined #openstack-dev | 14:06 | |
*** adalbas has joined #openstack-dev | 14:06 | |
garyk | ttx: salv-orlando the patch that i have added just removes one of the functions. i'll also try and remove the the rootwarp - make sure that it uses the agent utils execute. hope that this makes sense. originally i was concerned when i saw all of the places that ttx had to update. it essentailly should be done once. i still think that they are separate issues. | 14:06 |
*** mrodden1 has joined #openstack-dev | 14:07 | |
garyk | ttx: salv-orlando sorry i have just seen 1053381 (now it all makes sense) - i'll duplicate this. thanks gary | 14:07 |
*** waa has quit IRC | 14:08 | |
salv-orlando | garyk: ok sounds cool | 14:08 |
*** littleidea has quit IRC | 14:08 | |
*** gongysh has quit IRC | 14:09 | |
*** mrodden has quit IRC | 14:09 | |
salv-orlando | garyk: you mean marking 1053381 as a duplicated of bug 1053393? | 14:10 |
uvirtbot | Launchpad bug 1053393 in quantum "Remove duplicate execute function" [Undecided,New] https://launchpad.net/bugs/1053393 | 14:10 |
garyk | salv-orlando: correct. | 14:11 |
salv-orlando | From a brief exchange with ttx it seems they're independent actually. 1053381 asks to use a common execute function instead of subprocess.popen whereas 1053393 remove a duplicate execute function | 14:15 |
*** soosiechoi has joined #openstack-dev | 14:16 | |
ttx | salv-orlando: well they should all be fixed in one swoop | 14:16 |
salv-orlando | tax, garyk: ok so we can mark duplicate and have one patch addressing both of them? | 14:17 |
*** soosiechoi has quit IRC | 14:17 | |
*** tgall_foo has joined #openstack-dev | 14:18 | |
*** tgall_foo has quit IRC | 14:18 | |
*** tgall_foo has joined #openstack-dev | 14:18 | |
garyk | salv-orlando: i would prefer to do it in two patches - the first is to remove the execute function that is not used. the second is to get all to use the agent/utils/execute function. | 14:18 |
salv-orlando | garyk, tax: I don't have a strong opinion on one or two patches; I was just pointing out that those two bugs are related but not duplicate imho. | 14:22 |
garyk | salv-orlando: ttx: understood. i'll remove the duplicate and solve the two separately. sorry for the confusion | 14:23 |
salv-orlando | garyk: no worries - I've probably just added confusion to the confusion by chiming in. | 14:24 |
garyk | salv-orlando: actually not. i was confused off the bat. you just helped me understand where i was wrong. | 14:25 |
*** markmcclain has joined #openstack-dev | 14:25 | |
*** andrewbogott_afk is now known as andrewbogott | 14:27 | |
eglynn_ | bcwaldon: I've pushed that multi-processing config change to milestone-proposed https://review.openstack.org/13358 (merge is currently gating on master) | 14:27 |
eglynn_ | bcwaldon: would be good to get it into RC2 if poss | 14:27 |
*** apevec has joined #openstack-dev | 14:28 | |
*** apevec has joined #openstack-dev | 14:28 | |
*** rnirmal has joined #openstack-dev | 14:30 | |
*** adalbas has quit IRC | 14:31 | |
*** samkotttler|out has quit IRC | 14:34 | |
*** samkottler has joined #openstack-dev | 14:34 | |
vishy | jgriffith: https://bugs.launchpad.net/python-novaclient/+bug/1053432 | 14:35 |
uvirtbot | Launchpad bug 1053432 in python-novaclient "Volume and snapshot data not shown on create" [Undecided,In progress] | 14:35 |
*** winston-d has joined #openstack-dev | 14:35 | |
*** Gordonz has joined #openstack-dev | 14:36 | |
*** al-maisan is now known as almaisan-away | 14:36 | |
openstackgerrit | A change was merged to openstack/glance: Enable multi-processing by default. https://review.openstack.org/13283 | 14:39 |
*** adalbas has joined #openstack-dev | 14:41 | |
*** lloydde has joined #openstack-dev | 14:43 | |
*** edygarcia_ has joined #openstack-dev | 14:48 | |
*** reed has joined #openstack-dev | 14:48 | |
*** edygarcia has quit IRC | 14:48 | |
*** edygarcia_ is now known as edygarcia | 14:48 | |
garyk | danwent: ping | 14:53 |
openstackgerrit | A change was merged to openstack/python-cinderclient: Show volume and snapshot data on create https://review.openstack.org/13359 | 14:54 |
chmouel | markmc: it seems that using nosetests with --with-coverage fails with openstack.common for all openstack project, have yu seen that before? | 14:55 |
*** edygarcia_ has joined #openstack-dev | 14:55 | |
*** datsun180b has joined #openstack-dev | 14:55 | |
*** rnirmal has quit IRC | 14:56 | |
sdague | maurosr: can you push your latest into that samples api draft review for cloudpipes extension? it looks like the last update ways yesterday. Hopefully we can debug from there. | 14:56 |
*** soosiechoi has joined #openstack-dev | 14:57 | |
*** dolphm_ has joined #openstack-dev | 14:58 | |
*** spn1 has joined #openstack-dev | 14:58 | |
maurosr | sdague: just did it, can you check it again? | 14:58 |
sdague | sure | 14:58 |
*** edygarcia has quit IRC | 14:58 | |
*** edygarcia_ is now known as edygarcia | 14:58 | |
garyk | salv-orlando: ping | 14:58 |
salv-orlando | garyk: pong | 14:58 |
*** spn1 is now known as spn | 14:59 | |
markmc | chmouel, it's not this? https://bugs.launchpad.net/openstack-common/+bug/1048628 | 14:59 |
uvirtbot | Launchpad bug 1048628 in openstack-common "Failing unit test in Jenkins (test_excepthook_logs_exception)" [Undecided,New] | 14:59 |
garyk | salv-orlando: are you familiar with the hybrid driver for ovs? | 14:59 |
markmc | chmouel, if not, I can't think of anything | 14:59 |
salv-orlando | garyk: not incredibly familiar. But I had one or two drinks with it. | 14:59 |
garyk | salv-orlando: i have run into a little problem. i run devstack and deploy 2 vms. via ip netns i am able to ping only one of the vms. | 15:00 |
garyk | salv-orlando: when i use the old driver this works. | 15:00 |
garyk | salv-orlando: i'll open a bug and add the specific instructions. | 15:00 |
chmouel | markmc: no that, http://pastie.org/private/xx3kbilnataibh2sqnkqxq (not only to swiftclient but all others) | 15:01 |
salv-orlando | grayk: great thanks. I or Dan will look into it | 15:01 |
chmouel | markmc: will lodge a bug if you haven't seen that | 15:01 |
garyk | salv-orlando: thanks | 15:01 |
eglynn_ | ttx: I'm hoping to get this onto glance:milestone-proposed in time for RC2 - https://review.openstack.org/13358 | 15:02 |
eglynn_ | ttx: is RC2 imminent? | 15:02 |
ttx | eglynn_: ask bcwaldon | 15:03 |
markmc | chmouel, that could be a tests setup issue in swiftclient (and others) | 15:03 |
markmc | chmouel, swiftclient.openstack.common.setup is a module not a function | 15:04 |
ttx | eglynn_: my personal goal is before the end of the week... | 15:04 |
markmc | chmouel, why is nose looking at it? | 15:04 |
chmouel | markmc: that's what i am not sure about :) | 15:04 |
*** dspano has joined #openstack-dev | 15:04 | |
eglynn_ | ttx: cool, that should be plenty of time to get it landed ... | 15:04 |
openstackgerrit | A change was merged to openstack/python-swiftclient: Catch authorization failures https://review.openstack.org/13127 | 15:04 |
ttx | eglynn_: sounds like a risky behavior change though | 15:04 |
*** lloydde has quit IRC | 15:04 | |
*** markmcclain1 has joined #openstack-dev | 15:05 | |
ttx | eglynn_: risky as in.. troubles the testign waters | 15:05 |
chmouel | markmc: out of battery on my laptop, will be online later | 15:05 |
*** reidrac has quit IRC | 15:05 | |
eglynn_ | ttx: wrt risk, better to have the default reflect the most likely usage pattern in prod IMO | 15:06 |
ttx | eglynn_: not saying it's not a good idea, saying it changes the default behavior at a moment where people like QA and docs expect it not to chaneg anymore | 15:07 |
*** markmcclain has quit IRC | 15:07 | |
*** lloydde has joined #openstack-dev | 15:07 | |
*** GheRivero is now known as Ghe_Rivero | 15:07 | |
ttx | eglynn_: it's my role to flag those | 15:07 |
ttx | eglynn_: but bcwaldon decides | 15:08 |
eglynn_ | ttx: yep, understood ... though from the perspective of the number of processes actually servicing requests, it won't change, so its not quite as intrusive as it seems | 15:08 |
*** gatuus has joined #openstack-dev | 15:08 | |
eglynn_ | ttx: any-hoo, bcwaldon can make the call ... | 15:08 |
annegentle | ttx: eglynn_ from a docs perspective it's not awful, we'd need a doc bug or DocImpact flag on that patch | 15:10 |
*** dhellmann has joined #openstack-dev | 15:10 | |
eglynn_ | annegentle: thanks, I'll raise a doc bug if its accepted onto milestone-proposed | 15:11 |
*** lloydde has quit IRC | 15:11 | |
annegentle | eglynn_: thanks | 15:11 |
*** soosiechoi has quit IRC | 15:11 | |
*** maoy has joined #openstack-dev | 15:11 | |
*** Mandell has quit IRC | 15:12 | |
*** hemna has joined #openstack-dev | 15:14 | |
sdague | maurosr: so I'm still trying to match your issue, can you pastebin for me a "find . -name openssl.cnf" from your nova tree? | 15:14 |
maurosr | sdague: just this ./CA/openssl.cnf | 15:15 |
sdague | yeh, I don't seem to have that file. This is a nova tree that devstack installed? Can you make a clean version instead. | 15:15 |
sdague | the unit tests will run in clean git trees, so lets make sure everything is like it will be run in jenkins | 15:17 |
*** sdake has quit IRC | 15:17 | |
*** sdake has joined #openstack-dev | 15:17 | |
maurosr | sdague: yeah it's installed by devstack | 15:19 |
sdague | maurosr: ok, do a clean git clone instead into a seperate dir instead. I expect you'll then see my error with those tests. | 15:19 |
maurosr | 1 minute | 15:20 |
*** soosiechoi has joined #openstack-dev | 15:25 | |
maurosr | actually many minutes... still cloning | 15:26 |
*** samkottler has quit IRC | 15:26 | |
*** adalbas has quit IRC | 15:26 | |
*** jaypipes has joined #openstack-dev | 15:26 | |
sdague | no worries | 15:26 |
*** samkottler has joined #openstack-dev | 15:26 | |
openstackgerrit | A change was merged to openstack/quantum: Restore SIGPIPE default action for subprocesses https://review.openstack.org/13348 | 15:26 |
*** mindpixel has quit IRC | 15:27 | |
*** mnewby has joined #openstack-dev | 15:30 | |
*** derekh has quit IRC | 15:33 | |
*** ywu_ has joined #openstack-dev | 15:33 | |
*** zaneb has quit IRC | 15:36 | |
*** rnirmal has joined #openstack-dev | 15:36 | |
maurosr | sdague: I've a different trace now =/... pasting it | 15:37 |
*** ywu_ has quit IRC | 15:37 | |
maurosr | sdague: http://paste.openstack.org/show/21018/ same problem with openssl.cnf | 15:39 |
*** dwalleck has joined #openstack-dev | 15:39 | |
*** zaneb has joined #openstack-dev | 15:39 | |
*** maurosr has quit IRC | 15:39 | |
*** lloydde has joined #openstack-dev | 15:40 | |
*** lloydde has quit IRC | 15:40 | |
*** lloydde has joined #openstack-dev | 15:41 | |
*** maurosr has joined #openstack-dev | 15:41 | |
*** soosiechoi has quit IRC | 15:42 | |
maurosr | sdague: is that trace the same as yours? I mean, It was not breaking in post, now it is | 15:42 |
sdague | yes, that's what I was seeing | 15:42 |
*** littleidea has joined #openstack-dev | 15:47 | |
jeblair | jgriffith: ping | 15:48 |
jgriffith | jeblair: pong | 15:50 |
jeblair | jgriffith: i was recently made aware of the dd problem... and still don't know much about it | 15:51 |
*** dhellmann has quit IRC | 15:51 | |
jeblair | jgriffith: but i think a devstack test is encountering it right now | 15:51 |
jeblair | https://jenkins.openstack.org/job/gate-tempest-devstack-vm-cinder/2350/consoleFull | 15:51 |
jeblair | http://paste.openstack.org/show/21019/ | 15:51 |
jgriffith | jeblair: Looking... | 15:51 |
jeblair | ^ top output from that host | 15:51 |
uvirtbot | jeblair: Error: "top" is not a valid command. | 15:51 |
*** danpb has quit IRC | 15:52 | |
jeblair | jgriffith: is there any thing i can do to help with debugging? i could put your key on that host and save it from deletion if that would be useful. | 15:52 |
*** markmcclain1 has quit IRC | 15:52 | |
jeblair | vishy: ^ fyi | 15:52 |
*** jog0 has joined #openstack-dev | 15:52 | |
jgriffith | jeblair: Yeah, I'll PM you my key | 15:52 |
*** johnpur has joined #openstack-dev | 15:53 | |
*** ChanServ sets mode: +v johnpur | 15:53 | |
jgriffith | Nots ure this is the same thing though | 15:53 |
sdague | maurosr: got to drop off for lunch, but I think the issue is that genrootca.sh is never getting called. And the real question is whether you need that in this test, or you can stub it out | 15:54 |
jgriffith | jeblair: The issue is typically snapshot/deletes only, and it looks like the deletes all passed here | 15:54 |
jgriffith | jeblair: but the get/details is hosed | 15:54 |
*** spn has quit IRC | 15:55 | |
maurosr | sdague: ok, I'll lunch too, ping me when you come back please | 15:56 |
*** markmc has quit IRC | 15:57 | |
*** AnilV4 has joined #openstack-dev | 16:00 | |
*** maoy has quit IRC | 16:02 | |
*** eglynn_ has quit IRC | 16:04 | |
*** soosiechoi has joined #openstack-dev | 16:04 | |
*** koolhead17 has joined #openstack-dev | 16:05 | |
*** eglynn_ has joined #openstack-dev | 16:06 | |
*** adalbas has joined #openstack-dev | 16:07 | |
*** jtran has joined #openstack-dev | 16:11 | |
*** jemartin has joined #openstack-dev | 16:11 | |
zykes- | Is anyone here running Essex still or that can give me a iptables -L -vn and iptables -t nat -L -vn of a essex install nova-network node ? | 16:11 |
vishy | jgriffith: the last dd doesn't ever log success | 16:15 |
vishy | jgriffith: another point. How would you feel about setting the default availability_zone in cinder back to "nova" | 16:15 |
jgriffith | vishy: Yeah, and it's completely blocked all IO to LVM | 16:15 |
*** danwent has quit IRC | 16:15 | |
jgriffith | vishy: reasoning? | 16:16 |
jgriffith | vishy: Changing the AZ back that is | 16:16 |
vishy | jgriffith: a) that is the existing behavior of nova volume b) the cinder zone won't show up in euca-describe-availability-zones | 16:16 |
*** ncode has joined #openstack-dev | 16:16 | |
jgriffith | vishy: TBH I really don't see how it affects anything else in Cinder | 16:17 |
vishy | jgriffith: zone is a required param to euca-create-volume | 16:17 |
jgriffith | vishy: Makes sense as Nova is the consumer of the service anyway | 16:17 |
*** AnilV4 has quit IRC | 16:17 | |
jgriffith | vishy: And that's where everythign that *uses* the AZ info is located | 16:18 |
jgriffith | vishy: I can change it back | 16:18 |
*** AnilV has joined #openstack-dev | 16:18 | |
jgriffith | vishy: I'll send you a note when I get the patch in | 16:18 |
jgriffith | vishy: First I'll try to figure out if there's anything I can do with this dd/lvm issue | 16:19 |
*** AnilV is now known as AnilV4 | 16:19 | |
*** salv-orlando has quit IRC | 16:19 | |
vishy | jgriffith: http://paste.openstack.org/show/21022/ | 16:19 |
openstackgerrit | A change was merged to openstack/nova: Restore SIGPIPE default action for subprocesses https://review.openstack.org/13346 | 16:19 |
vishy | happy to report a bug | 16:19 |
*** salv-orlando has joined #openstack-dev | 16:20 | |
openstackgerrit | A change was merged to openstack/nova: Adds API sample testing for rescue API extension https://review.openstack.org/13284 | 16:20 |
jgriffith | vishy: Sure | 16:20 |
jgriffith | vishy: I don't mind creating it either, so whatever | 16:20 |
jgriffith | jeblair: Based on what i was seeing with these before we're kinda hosed | 16:21 |
vishy | jgriffith: I will file, might want to add a note to release notes to make sure that cinder and nova zones match for ec2-api to work | 16:22 |
jgriffith | jeblair: I'd like to get ahold of the cannonical folks to see what kernel info I can get to them from here | 16:22 |
*** gael has quit IRC | 16:22 | |
openstackgerrit | A change was merged to openstack/nova: Replace builtin hash with MD5 to solve 32/64-bit issues. https://review.openstack.org/13321 | 16:22 |
jeblair | okay. | 16:22 |
*** mnewby has quit IRC | 16:22 | |
jgriffith | vishy: sounds good | 16:22 |
*** toey has joined #openstack-dev | 16:22 | |
jgriffith | jeblair: Can you leave that in it's state for about an hour? | 16:22 |
*** samkottler is now known as samkottler|afk | 16:22 | |
jeblair | vishy, jgriffith: jenkins has a behavioral issue that is exacerbated by the dd bug | 16:22 |
jgriffith | jeblair: I have to go interview someone | 16:22 |
jeblair | jgriffith: yep, should be fine, lemme know when you're done with it. | 16:23 |
jgriffith | jeblair: thanks | 16:23 |
jgriffith | jeblair: I'll shout when I'm done | 16:23 |
*** toey has quit IRC | 16:23 | |
jeblair | vishy, jgriffith: when it "archives artifacts" it does it in strict job sequence order, so if a job was stuck on dd, all jobs in jenkins launched after it would wait on it to finish before reporting. | 16:24 |
*** mnewby has joined #openstack-dev | 16:24 | |
vishy | has anyone else noticed that devstack is getting double logging now? | 16:24 |
jeblair | vishy, jgriffith: now that we have logs.openstack.org, we don't need jenkins artifact archiving for the devstack jobs anymore, so i just merged a change that will remove them. | 16:24 |
jeblair | vishy, jgriffith: so hopefully, if a node does hit the dd problem, it will no longer hold up the whole queue | 16:25 |
openstackgerrit | A change was merged to openstack/nova: Use test.TestingException instead of duplicating it https://review.openstack.org/13367 | 16:26 |
*** ev0ldave has joined #openstack-dev | 16:26 | |
jeblair | vishy, jgriffith: (except for the timeout if it happens in the merge queue) -- so the dd bug is still going to be a problem for merge throughput, just hopefully less severe | 16:26 |
*** PotHix has joined #openstack-dev | 16:26 | |
bcwaldon | vishy: yes | 16:31 |
bcwaldon | vishy: you mean services running in devstack? | 16:31 |
vishy | bcwaldon: i think there is an issue with our common logging | 16:31 |
vishy | bcwaldon: there is probably a regular stdout or stderr handler left in | 16:32 |
bcwaldon | vishy: yeah, I'd look for the hook that checks for 'log_file' in CONF | 16:32 |
vishy | bcwaldon: i don't have log_file set. You think it is sending it to stdout if it isn't set? | 16:33 |
bcwaldon | vishy: yes | 16:33 |
bcwaldon | vishy: immediate thought | 16:33 |
bcwaldon | vishy: and when you don't run in daemon mode, it might be setting up stdout log handler in a separate place | 16:33 |
*** soosiechoi has quit IRC | 16:34 | |
bcwaldon | vishy: haha, so Glance still does its own log setup | 16:37 |
bcwaldon | vishy: in addition to calling the common log setup | 16:37 |
*** jog0 has quit IRC | 16:37 | |
*** primeministerp has quit IRC | 16:38 | |
*** tgall_foo has quit IRC | 16:40 | |
vishy | jkoelker: ping | 16:41 |
vishy | bcwaldon: found it | 16:41 |
bcwaldon | vishy: point me at it! | 16:41 |
vishy | nova/__init__.py | 16:41 |
bcwaldon | ha | 16:42 |
*** tgall_foo has joined #openstack-dev | 16:42 | |
*** tgall_foo has quit IRC | 16:42 | |
*** tgall_foo has joined #openstack-dev | 16:42 | |
*** mikal has quit IRC | 16:43 | |
vishy | bcwaldon: hilarious right? | 16:43 |
bcwaldon | vishy: hi-larious | 16:43 |
*** mikal has joined #openstack-dev | 16:44 | |
vishy | bcwaldon: so the nova code would remove the log handler at the end | 16:44 |
openstackgerrit | A change was merged to openstack/nova: Fix solidfire option declaration https://review.openstack.org/13363 | 16:44 |
*** garyk has quit IRC | 16:45 | |
vishy | bcwaldon: it is so you get some logging before the setup is complete I guess | 16:45 |
vishy | bcwaldon: I guess we should remove it now... | 16:45 |
bcwaldon | vishy: yeah, so I see double logs in Glance, too | 16:45 |
bcwaldon | vishy: but I think thats an independt fudge-up | 16:45 |
vishy | bcwaldon: k | 16:45 |
bcwaldon | I'd gotten really good at ignoring it | 16:46 |
*** danwent has joined #openstack-dev | 16:46 | |
jgriffith | vishy: Well, that was easy enough | 16:46 |
*** maploin has quit IRC | 16:47 | |
jkoelker | vishy: yea the __init__ config was for legacy compat, I'd love to have it ripped out | 16:48 |
*** adalbas has quit IRC | 16:48 | |
*** eglynn_ has quit IRC | 16:50 | |
*** s0mik has joined #openstack-dev | 16:52 | |
*** samkottler|afk is now known as samkottler | 16:54 | |
*** hemna has quit IRC | 16:55 | |
openstackgerrit | A change was merged to openstack/quantum: Fix for flat network creation in Cisco plugin https://review.openstack.org/13340 | 16:57 |
vishy | bcwaldon, jkoelker: https://review.openstack.org/13379 | 16:58 |
*** darraghb has quit IRC | 17:00 | |
*** mnewby has quit IRC | 17:01 | |
*** jemartin has quit IRC | 17:02 | |
*** mnewby has joined #openstack-dev | 17:02 | |
*** oneiroi has quit IRC | 17:05 | |
*** oneiroi has joined #openstack-dev | 17:05 | |
*** zaitcev has joined #openstack-dev | 17:06 | |
*** hemna has joined #openstack-dev | 17:06 | |
*** markmcclain has joined #openstack-dev | 17:06 | |
*** dhellmann has joined #openstack-dev | 17:07 | |
*** rafaduran has quit IRC | 17:07 | |
*** zing_ has quit IRC | 17:08 | |
*** crobinso has joined #openstack-dev | 17:09 | |
*** crobinso has left #openstack-dev | 17:10 | |
*** adalbas has joined #openstack-dev | 17:11 | |
*** winston-d has quit IRC | 17:11 | |
*** eglynn_ has joined #openstack-dev | 17:12 | |
*** epim has joined #openstack-dev | 17:14 | |
*** heckj has joined #openstack-dev | 17:14 | |
heckj | dolphm: https://review.openstack.org/#/c/13304/ looking good - I like having that kind of format available immediately on the web (like bcwaldon did with Glance). No need to continue google docs at this stage - I think all the feedback now is going to be coming from implementation and testing the API against reality. | 17:15 |
dolphm_ | heckj: awesome | 17:16 |
*** soosiechoi has joined #openstack-dev | 17:16 | |
dolphm_ | heckj: P.S. who else has plustwoability on identity-api? | 17:17 |
dolphm_ | not sure how to check | 17:17 |
heckj | dolphm_: heh, neither am I. I'm not sure - let me ask in #openstack-infra | 17:20 |
heckj | dolphm_: annegentle and me - not sure who else. Might be doc-core | 17:21 |
dolphm_ | heckj: i do as well | 17:22 |
heckj | dolphm_: turns out it's keystone-core | 17:22 |
dolphm_ | heckj: but not doc-core?? | 17:22 |
heckj | dolphm_: gave me this link: https://review.openstack.org/#/admin/projects/openstack/identity-api,access | 17:22 |
*** andrewbogott is now known as andrewbogott_afk | 17:23 | |
*** torandu has joined #openstack-dev | 17:23 | |
dolphm_ | heckj: it's showing me that i'm the only member of keystone-core..? https://review.openstack.org/#/admin/groups/uuid-036b9e3b26007375b712b2fa8565e63f652fa3e9,members | 17:24 |
heckj | I think that's just what we can view - when I look I only see myself, but it's sync'd form launchpad's ~keystone-core | 17:24 |
dolphm_ | ah okay | 17:25 |
mtaylor | (we're hoping that becomes less complex in a week or two, btw) | 17:25 |
*** martines has quit IRC | 17:25 | |
heckj | dolphm_: for the V3 api work - I've been chugging through the python-keystoneclient changes first. Is there an ordering between those two feature branches? Can we land keystoneclient v3 branch first, or does it need to go reverse around? | 17:28 |
dolphm_ | heckj: they can land in any order -- there's a few tests on the server side that depend on the client, but they're currently skipped (as proposed) | 17:29 |
*** Ryan_Lane has joined #openstack-dev | 17:29 | |
heckj | cool | 17:29 |
dolphm_ | heckj: i think they also cite the review that needs to land in order for them to be enabled | 17:29 |
*** Ryan_Lane has joined #openstack-dev | 17:29 | |
*** nati_ueno has joined #openstack-dev | 17:30 | |
openstackgerrit | A change was merged to openstack/nova: Raise NotFound for non-existent volume snapshot create https://review.openstack.org/12944 | 17:30 |
*** dwalleck has quit IRC | 17:32 | |
*** soosiechoi has quit IRC | 17:32 | |
*** soosiechoi has joined #openstack-dev | 17:32 | |
*** Mandell has joined #openstack-dev | 17:33 | |
*** ywu_ has joined #openstack-dev | 17:34 | |
*** jakedahn_zz is now known as jakedahn | 17:35 | |
eglynn_ | davidkranz: hey | 17:37 |
eglynn_ | davidkranz: so I looked into that issue around bug #963248 | 17:37 |
uvirtbot | Launchpad bug 963248 in nova "Return code for rebuild with non-existent image changed" [Undecided,Invalid] https://launchpad.net/bugs/963248 | 17:37 |
eglynn_ | davidkranz: so here's the deal ... | 17:38 |
*** ywu_ has quit IRC | 17:38 | |
eglynn_ | davidkranz: that bug refers to the response code when the image is not found ... this is still 400 (I just checked it) | 17:38 |
eglynn_ | davidkranz: whereas https://review.openstack.org/#/c/12994/1/tempest/tests/compute/test_server_actions.py tests if the server (as opposed to the image) is non-existent | 17:39 |
eglynn_ | davidkranz: in that case, 404 is return (I don't think there was any change there) | 17:40 |
*** epim has quit IRC | 17:40 | |
*** markmcclain1 has joined #openstack-dev | 17:40 | |
*** soosiechoi has quit IRC | 17:41 | |
*** markmcclain has quit IRC | 17:42 | |
*** martines has joined #openstack-dev | 17:47 | |
*** eglynn_ has quit IRC | 17:47 | |
*** jog0 has joined #openstack-dev | 17:48 | |
*** jog0 has quit IRC | 17:48 | |
*** jog0 has joined #openstack-dev | 17:48 | |
*** andrewbogott_afk is now known as andrewbogott | 17:52 | |
*** epim has joined #openstack-dev | 17:53 | |
openstackgerrit | A change was merged to openstack/nova: Inherit the base images qcow2 properties https://review.openstack.org/13173 | 17:53 |
*** epim has quit IRC | 17:54 | |
*** epim has joined #openstack-dev | 17:55 | |
*** soosiechoi has joined #openstack-dev | 17:56 | |
*** waa has joined #openstack-dev | 17:57 | |
dolphm_ | heckj: +2 for your reviewing rampage | 17:57 |
heckj | I promised - just slow to get through them. You've done a ton of work there! | 17:57 |
openstackgerrit | A change was merged to openstack/cinder: Restore SIGPIPE default action for subprocesses https://review.openstack.org/13347 | 17:59 |
heckj | back for more later - days' kicking in and dragging me away | 17:59 |
*** heckj has quit IRC | 17:59 | |
*** kyriakos has quit IRC | 18:01 | |
*** dolphm_ has quit IRC | 18:02 | |
*** dolphm_ has joined #openstack-dev | 18:02 | |
*** dolphm_ has quit IRC | 18:03 | |
openstackgerrit | A change was merged to openstack/nova: Re-generate sample config file https://review.openstack.org/13366 | 18:04 |
openstackgerrit | A change was merged to openstack/nova: Fix startup with DELETED instances https://review.openstack.org/13362 | 18:04 |
*** eglynn_ has joined #openstack-dev | 18:07 | |
*** waa has quit IRC | 18:07 | |
openstackgerrit | A change was merged to openstack/nova: Recreate nw_info after auto assigning floating ip. https://review.openstack.org/13369 | 18:07 |
openstackgerrit | A change was merged to openstack/nova: Modified 404 error response for server actions https://review.openstack.org/13024 | 18:07 |
*** reed has quit IRC | 18:07 | |
*** garyk has joined #openstack-dev | 18:08 | |
openstackgerrit | A change was merged to openstack/nova: Stop double logging to the console https://review.openstack.org/13379 | 18:09 |
*** waa has joined #openstack-dev | 18:16 | |
*** japage has quit IRC | 18:18 | |
*** mrunge has joined #openstack-dev | 18:18 | |
*** datsun180b_ has joined #openstack-dev | 18:19 | |
*** soosiechoi has quit IRC | 18:19 | |
openstackgerrit | A change was merged to openstack/nova: Fix solidfire unit tests https://review.openstack.org/13382 | 18:20 |
*** datsun180b has quit IRC | 18:21 | |
*** datsun180b_ is now known as datsun180b | 18:21 | |
*** datsun180b has quit IRC | 18:23 | |
*** datsun180b has joined #openstack-dev | 18:24 | |
*** reed has joined #openstack-dev | 18:24 | |
*** dhellmann_ has joined #openstack-dev | 18:26 | |
*** dhellmann has quit IRC | 18:29 | |
*** dhellmann_ is now known as dhellmann | 18:29 | |
*** danwent has quit IRC | 18:31 | |
*** danwent has joined #openstack-dev | 18:31 | |
*** adalbas has quit IRC | 18:32 | |
*** novas0x2a|laptop has joined #openstack-dev | 18:33 | |
*** apevec has quit IRC | 18:34 | |
*** dolphm_ has joined #openstack-dev | 18:53 | |
*** eglynn_ has quit IRC | 18:54 | |
jgriffith | jeblair: ping | 18:56 |
*** s0mik has quit IRC | 18:57 | |
*** alexpilotti has quit IRC | 19:02 | |
*** eglynn_ has joined #openstack-dev | 19:04 | |
*** gyee has joined #openstack-dev | 19:08 | |
*** cmagina has quit IRC | 19:09 | |
*** markmcclain has joined #openstack-dev | 19:10 | |
*** ChanServ has quit IRC | 19:11 | |
*** sandywalsh_ has joined #openstack-dev | 19:13 | |
*** sandywalsh has quit IRC | 19:13 | |
*** markmcclain1 has quit IRC | 19:13 | |
*** cmagina has joined #openstack-dev | 19:14 | |
*** sandywalsh_ has quit IRC | 19:14 | |
*** markmcclain1 has joined #openstack-dev | 19:14 | |
*** epim has quit IRC | 19:15 | |
*** dhellmann has quit IRC | 19:15 | |
*** markmcclain has quit IRC | 19:16 | |
*** ChanServ has joined #openstack-dev | 19:17 | |
*** zelazny.freenode.net sets mode: +o ChanServ | 19:17 | |
*** zaneb has quit IRC | 19:17 | |
*** dhellmann has joined #openstack-dev | 19:20 | |
*** adalbas has joined #openstack-dev | 19:21 | |
*** dubsquared has joined #openstack-dev | 19:21 | |
*** ev0ldave has quit IRC | 19:21 | |
*** maoy has joined #openstack-dev | 19:23 | |
jeblair | jgriffith: pong | 19:23 |
jeblair | jgriffith: (and #openstack-infra can help with these things if i'm not around) | 19:24 |
jgriffith | jeblair: Hey there, the ubuntu folks are looking at that bug again with a repro script | 19:24 |
jgriffith | jeblair: Should be save to kill that VM if you need it back | 19:24 |
jgriffith | s/save/safe/ | 19:24 |
*** zodiak has quit IRC | 19:30 | |
*** jemartin has joined #openstack-dev | 19:32 | |
jeblair | jgriffith: cool, thanks, i'll release it in a few | 19:33 |
*** ywu_ has joined #openstack-dev | 19:34 | |
*** dubsquared1 has joined #openstack-dev | 19:37 | |
*** adalbas has quit IRC | 19:37 | |
openstackgerrit | A change was merged to openstack/nova: Cleanup test_api_samples:_compare_result https://review.openstack.org/13396 | 19:38 |
tr3buchet | blist | 19:38 |
*** ywu_ has quit IRC | 19:38 | |
*** dubsquared has quit IRC | 19:39 | |
*** titankiller has joined #openstack-dev | 19:39 | |
*** adalbas has joined #openstack-dev | 19:39 | |
*** mrodden has joined #openstack-dev | 19:40 | |
*** s0mik has joined #openstack-dev | 19:42 | |
*** mrodden1 has quit IRC | 19:42 | |
*** jtran has quit IRC | 19:43 | |
*** mmalesky has joined #openstack-dev | 19:45 | |
*** maoy has quit IRC | 19:45 | |
*** maoy has joined #openstack-dev | 19:45 | |
*** littleidea has quit IRC | 19:47 | |
*** jakedahn is now known as jakedahn_zz | 19:47 | |
*** littleidea has joined #openstack-dev | 19:49 | |
*** cmagina has quit IRC | 19:53 | |
*** PotHix has quit IRC | 19:55 | |
*** cmagina has joined #openstack-dev | 19:55 | |
*** jakedahn_zz is now known as jakedahn | 19:56 | |
*** ncode has quit IRC | 19:57 | |
*** eglynn_ has quit IRC | 19:58 | |
*** eglynn_ has joined #openstack-dev | 19:59 | |
*** maurosr has quit IRC | 19:59 | |
*** adalbas has quit IRC | 19:59 | |
*** ncode has joined #openstack-dev | 20:00 | |
*** dubsquared1 has quit IRC | 20:00 | |
*** dubsquared has joined #openstack-dev | 20:00 | |
*** crandquist has joined #openstack-dev | 20:00 | |
*** samkottler is now known as samkottler|hacki | 20:00 | |
*** samkottler|hacki is now known as samkottler|hack | 20:00 | |
*** zodiak has joined #openstack-dev | 20:02 | |
*** maurosr has joined #openstack-dev | 20:02 | |
*** koolhead17 has quit IRC | 20:04 | |
*** m4xmr has joined #openstack-dev | 20:07 | |
*** m4xmr has quit IRC | 20:07 | |
*** ncode has quit IRC | 20:10 | |
eglynn_ | bcwaldon: I missed the doc update for workers default ... https://review.openstack.org/13404, https://review.openstack.org/13405 | 20:11 |
*** ncode has joined #openstack-dev | 20:11 | |
zykes- | How can I get Security Groups working with Quantum V2 ? | 20:13 |
*** mrunge has quit IRC | 20:14 | |
bcwaldon | eglynn_: approved | 20:14 |
*** cmagina has quit IRC | 20:16 | |
*** jakedahn is now known as jakedahn_zz | 20:16 | |
*** dprince has quit IRC | 20:18 | |
nikhil | anyone remembers the credentials to login into the cirros devstack instances? | 20:19 |
dtroyer | IIRC its cirros, cubswin:) | 20:19 |
*** waa has quit IRC | 20:20 | |
dtroyer | that's c u b s w i n : ) without the spaces in case your IRC client converts emoticons... | 20:20 |
nikhil | we tried that but .. | 20:20 |
*** cmagina has joined #openstack-dev | 20:21 | |
*** samkottler|hack is now known as samkottler | 20:22 | |
nikhil | nvm | 20:22 |
nikhil | :) works | 20:22 |
openstackgerrit | A change was merged to openstack/nova: Added description of operators for extra_specs https://review.openstack.org/12584 | 20:29 |
*** jemartin has quit IRC | 20:32 | |
*** eglynn_ has quit IRC | 20:32 | |
*** maoy has quit IRC | 20:33 | |
*** rkukura has quit IRC | 20:33 | |
openstackgerrit | A change was merged to openstack/glance: Update docs with modified workers default value. https://review.openstack.org/13404 | 20:33 |
*** eglynn_ has joined #openstack-dev | 20:34 | |
*** ncode has quit IRC | 20:34 | |
*** dprince has joined #openstack-dev | 20:37 | |
*** ncode has joined #openstack-dev | 20:40 | |
*** eglynn_ has quit IRC | 20:42 | |
*** PotHix has joined #openstack-dev | 20:44 | |
*** maoy has joined #openstack-dev | 20:46 | |
*** eglynn has joined #openstack-dev | 20:51 | |
eglynn | annegentle: here's that glance docs bug discussed earlier ... bug #1053650 | 20:52 |
uvirtbot | Launchpad bug 1053650 in openstack-manuals "Update docs with new default value for glance workers config option" [Undecided,New] https://launchpad.net/bugs/1053650 | 20:52 |
annegentle | eglynn: thanks, will target | 20:53 |
eglynn | annegentle: great! | 20:53 |
*** markmc has joined #openstack-dev | 20:59 | |
vishy | nova meeting starting in #openstack-meeting | 21:00 |
zykes- | security groups in quantum danwent / vishy | 21:02 |
zykes- | ? | 21:02 |
*** mmalesky has quit IRC | 21:03 | |
*** mmalesky has joined #openstack-dev | 21:04 | |
*** tgall_foo has quit IRC | 21:05 | |
*** dolphm_ has quit IRC | 21:05 | |
*** markmcclain has joined #openstack-dev | 21:05 | |
ewindisch | Still seeking approval and reviews for: | 21:05 |
ewindisch | https://review.openstack.org/#/c/11408/ | 21:05 |
ewindisch | https://review.openstack.org/#/c/12901/ | 21:05 |
ewindisch | Trying to them in today, if possible, so they can get into Quantum RC2 | 21:06 |
*** markmcclain1 has quit IRC | 21:07 | |
*** alexpilotti has joined #openstack-dev | 21:09 | |
*** maurosr has quit IRC | 21:09 | |
*** maoy has quit IRC | 21:13 | |
*** markvoelker has quit IRC | 21:17 | |
*** torandu has quit IRC | 21:18 | |
*** titankiller has quit IRC | 21:21 | |
*** markmcclain1 has joined #openstack-dev | 21:21 | |
*** dubsquared has quit IRC | 21:23 | |
*** markmcclain has quit IRC | 21:24 | |
*** jcru has joined #openstack-dev | 21:33 | |
*** mrodden1 has joined #openstack-dev | 21:33 | |
*** jcru has quit IRC | 21:33 | |
*** rkukura has joined #openstack-dev | 21:34 | |
*** ywu_ has joined #openstack-dev | 21:34 | |
*** mrodden has quit IRC | 21:36 | |
*** ywu_ has quit IRC | 21:38 | |
*** nunosantos has quit IRC | 21:40 | |
jgriffith | gugl: ping | 21:41 |
*** mtreinish has quit IRC | 21:43 | |
jgriffith | vishy: I'm assuming you agree with dealing with the driver issues? | 21:44 |
jgriffith | vishy: Either that or remove them since they're broke | 21:44 |
openstackgerrit | A change was merged to openstack/openstack-common: fanout subscriptions in impl_zmq https://review.openstack.org/11408 | 21:45 |
vishy | jgriffith: I don't mind merging that patch | 21:46 |
*** datsun180b has quit IRC | 21:49 | |
*** harlowja has quit IRC | 21:50 | |
*** markmc has quit IRC | 21:52 | |
openstackgerrit | A change was merged to openstack/openstack-common: Support declare_topic_consumer in impl_zmq https://review.openstack.org/12901 | 21:52 |
*** dspano has quit IRC | 21:52 | |
*** littleidea has quit IRC | 21:54 | |
*** harlowja has joined #openstack-dev | 21:59 | |
*** kbringard has quit IRC | 21:59 | |
*** Mandell has quit IRC | 22:02 | |
*** eglynn_ has joined #openstack-dev | 22:05 | |
*** LinuxJedi has quit IRC | 22:05 | |
*** eharney has quit IRC | 22:06 | |
*** LinuxJedi has joined #openstack-dev | 22:06 | |
*** alunduil has quit IRC | 22:07 | |
gugl | jgriffith: I found a fixed bug which has the opposite problem of mine...https://bugs.launchpad.net/ubuntu/+source/nova/+bug/871278/+editstatus | 22:08 |
uvirtbot | Launchpad bug 871278 in nova "Cannot attach volumes to instances if tgt is used" [High,Fix released] | 22:08 |
gugl | jgriffith: I am new to openstack...not sure that is the defect tracking system for openstack | 22:10 |
*** ywu_ has joined #openstack-dev | 22:11 | |
*** eglynn_ has quit IRC | 22:12 | |
*** eglynn__ has joined #openstack-dev | 22:12 | |
rmk | vishy: If I can get this (https://review.openstack.org/#/c/13251/) finished up in the next day or so, is there a possibility of getting it into the next RC or are we fairly set at this point? | 22:13 |
gugl | jgriffith: try to see what got fixed for that bug | 22:13 |
*** eglynn__ has quit IRC | 22:18 | |
*** danwent has quit IRC | 22:18 | |
*** danwent has joined #openstack-dev | 22:20 | |
jgriffith | gugl: Not sure those are related, I thought we determined that it was a mismatch in the Lun number? | 22:22 |
gugl | jgriffith | 22:22 |
*** danwent has quit IRC | 22:22 | |
vishy | rmk: probably not that one | 22:22 |
vishy | rmk: it can definitely go through stable/backport though | 22:22 |
*** danwent has joined #openstack-dev | 22:23 | |
gugl | jgriffith: it is sort of related...mine is driver gives target_lun=1 which actual is 0, his is target_lun=0, which actual is 1 | 22:23 |
jgriffith | gugl: Yes, but I believe the *fix* is to add the correct lun number to the model_update | 22:24 |
jgriffith | gugl: The reason you can't connect is becuase the iqn is wrong (at least in the paste you showed me) | 22:24 |
gugl | jgriffith...sort of hard code there? | 22:25 |
*** dhellmann has quit IRC | 22:25 | |
jgriffith | gugl: That's the problem, I don't believe it's static on HP/LH, I've pinged somebody I know at LH to find out, and see if there's a cliq cmd | 22:25 |
gugl | jgriffith: I checked the code it calls getVolumeInfo first...didn't have any target_lun info...so it falls into the if tgtadm =1... | 22:27 |
*** dhellmann has joined #openstack-dev | 22:27 | |
*** markmcclain1 has quit IRC | 22:27 | |
gugl | jgriffith: let me know what you find out. by the way...where is the usual place to track defect for openstack volume stuffs? | 22:28 |
jgriffith | gugl: https://bugs.launchpad.net/cinder | 22:28 |
gugl | jgriffith: tks. | 22:29 |
*** dhellmann has quit IRC | 22:31 | |
*** Gordonz has quit IRC | 22:33 | |
*** nati_uen_ has joined #openstack-dev | 22:34 | |
*** nati_uen_ has quit IRC | 22:34 | |
*** nati_uen_ has joined #openstack-dev | 22:34 | |
*** nati_ueno has quit IRC | 22:37 | |
*** jtran has joined #openstack-dev | 22:37 | |
*** edygarcia_ has joined #openstack-dev | 22:40 | |
*** crandquist has quit IRC | 22:40 | |
*** mrodden1 has quit IRC | 22:41 | |
*** littleidea has joined #openstack-dev | 22:42 | |
*** edygarcia has quit IRC | 22:43 | |
*** edygarcia_ is now known as edygarcia | 22:43 | |
openstackgerrit | A change was merged to openstack/nova: Clarify dangerous use of exceptions in unit tests https://review.openstack.org/13394 | 22:44 |
*** crandquist has joined #openstack-dev | 22:44 | |
*** edygarcia_ has joined #openstack-dev | 22:46 | |
*** maurosr has joined #openstack-dev | 22:46 | |
*** mnewby has quit IRC | 22:48 | |
*** edygarcia has quit IRC | 22:50 | |
*** edygarcia_ is now known as edygarcia | 22:50 | |
*** maurosr has quit IRC | 22:50 | |
*** maurosr has joined #openstack-dev | 22:51 | |
rmk | vishy: ok makes sense | 22:52 |
jgriffith | gugl: I've verified it should be lun 0 | 22:54 |
ewindisch | Thanks everyone that helped review those ZeroMQ-Quantum fixes for common. | 22:55 |
ewindisch | I have a review in progress to pull the common-code into Quantum | 22:55 |
ewindisch | https://review.openstack.org/13423 | 22:55 |
gugl | jgriffith: thanks. | 22:55 |
*** maurosr has quit IRC | 22:55 | |
gugl | jgriffith: so it is a bug, right? | 22:56 |
jgriffith | gugl: Yes | 22:56 |
jgriffith | gugl: I'll log it and get the fix up | 22:57 |
*** maurosr has joined #openstack-dev | 22:57 | |
gugl | jgriffith: tks | 22:57 |
*** edygarcia_ has joined #openstack-dev | 22:58 | |
gugl | jgriffith: can you give the defect number once you log it | 22:58 |
*** lloydde has quit IRC | 22:59 | |
openstackgerrit | A change was merged to openstack/cinder: Fixes to the SolarisISCSI Driver https://review.openstack.org/13391 | 22:59 |
*** edygarcia__ has joined #openstack-dev | 23:00 | |
*** littleidea has quit IRC | 23:00 | |
*** edygarcia has quit IRC | 23:00 | |
*** edygarcia__ is now known as edygarcia | 23:00 | |
*** edygarcia_ has quit IRC | 23:02 | |
*** littleidea has joined #openstack-dev | 23:02 | |
*** mnewby has joined #openstack-dev | 23:02 | |
*** nati_uen_ has quit IRC | 23:03 | |
*** rnirmal has quit IRC | 23:05 | |
*** mrodden has joined #openstack-dev | 23:06 | |
*** nati_ueno has joined #openstack-dev | 23:06 | |
*** edygarcia has quit IRC | 23:06 | |
jgriffith | gugl: bug #1053717 | 23:09 |
uvirtbot | Launchpad bug 1053717 in cinder "Lefthand driver in san.py not setting Lun in model_update" [High,Triaged] https://launchpad.net/bugs/1053717 | 23:10 |
*** nati_ueno has quit IRC | 23:14 | |
*** nati_ueno has joined #openstack-dev | 23:15 | |
*** maoy has joined #openstack-dev | 23:17 | |
*** maoy has quit IRC | 23:17 | |
*** mnewby has quit IRC | 23:18 | |
*** gyee has quit IRC | 23:21 | |
*** e1mer has joined #openstack-dev | 23:26 | |
*** e1mer has joined #openstack-dev | 23:26 | |
*** nati_ueno has quit IRC | 23:32 | |
*** nati_ueno has joined #openstack-dev | 23:34 | |
*** ywu_ has quit IRC | 23:34 | |
*** ywu_ has joined #openstack-dev | 23:35 | |
*** gongysh has joined #openstack-dev | 23:36 | |
*** littleidea has quit IRC | 23:37 | |
*** lloydde has joined #openstack-dev | 23:39 | |
*** s0mik has quit IRC | 23:39 | |
*** ywu_ has quit IRC | 23:40 | |
*** ywu_ has joined #openstack-dev | 23:40 | |
*** ncode has quit IRC | 23:42 | |
*** alunduil has joined #openstack-dev | 23:44 | |
openstackgerrit | A change was merged to openstack/nova: libvirt: return after soft reboot successfully completes https://review.openstack.org/13422 | 23:44 |
*** ywu_ has quit IRC | 23:44 | |
*** ywu_ has joined #openstack-dev | 23:45 | |
*** harlowja has quit IRC | 23:46 | |
*** torandu has joined #openstack-dev | 23:47 | |
*** Ryan_Lane has quit IRC | 23:49 | |
*** lloydde_ has joined #openstack-dev | 23:51 | |
*** lloydde has quit IRC | 23:54 | |
*** harlowja has joined #openstack-dev | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!