*** bknudson has joined #openstack-sdks | 00:04 | |
*** rmcall has quit IRC | 00:12 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 00:48 | |
*** rmcall has joined #openstack-sdks | 02:08 | |
*** rmcall_ has joined #openstack-sdks | 02:11 | |
*** rmcall has quit IRC | 02:12 | |
*** rmcall_ is now known as rmcall | 02:12 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 02:14 | |
*** rmcall has quit IRC | 02:22 | |
*** stevemar has joined #openstack-sdks | 04:08 | |
*** stevemar2 has joined #openstack-sdks | 04:32 | |
*** stevemar has quit IRC | 04:35 | |
*** stevemar2 is now known as stevemar | 04:53 | |
*** jamielennox is now known as jamielennox|away | 05:41 | |
*** pm90_ has joined #openstack-sdks | 05:44 | |
*** pm90_ has quit IRC | 06:00 | |
*** chlong has quit IRC | 07:16 | |
*** maufart has joined #openstack-sdks | 07:21 | |
*** Miouge has joined #openstack-sdks | 07:26 | |
*** etoews has quit IRC | 07:29 | |
*** stevemar has quit IRC | 07:59 | |
*** sirjava has joined #openstack-sdks | 10:32 | |
*** sirjava has left #openstack-sdks | 10:38 | |
*** macjack has joined #openstack-sdks | 11:05 | |
*** macjack has quit IRC | 11:07 | |
*** bknudson has quit IRC | 12:40 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 12:57 | |
*** bknudson has joined #openstack-sdks | 13:01 | |
*** f13o has joined #openstack-sdks | 13:50 | |
*** mattfarina has joined #openstack-sdks | 14:07 | |
*** etoews has joined #openstack-sdks | 14:20 | |
*** pm90_ has joined #openstack-sdks | 15:04 | |
*** pm90_ has quit IRC | 15:05 | |
*** pm90_ has joined #openstack-sdks | 15:06 | |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Add _check_resource to BaseProxy https://review.openstack.org/167273 | 15:19 |
---|---|---|
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Proxy delete method https://review.openstack.org/164310 | 15:19 |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Proxy get method https://review.openstack.org/164351 | 15:20 |
*** fifieldt has quit IRC | 15:21 | |
*** stevemar has joined #openstack-sdks | 15:34 | |
*** maufart has quit IRC | 15:40 | |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Add _check_resource to BaseProxy https://review.openstack.org/167273 | 16:07 |
*** Miouge has quit IRC | 16:14 | |
*** tzero has quit IRC | 16:18 | |
*** tzero has joined #openstack-sdks | 16:27 | |
*** bknudson has quit IRC | 16:51 | |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Proxy delete method https://review.openstack.org/164310 | 17:42 |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Proxy get method https://review.openstack.org/164351 | 17:42 |
*** bknudson has joined #openstack-sdks | 17:49 | |
*** christi3k has joined #openstack-sdks | 17:55 | |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Add _check_resource to BaseProxy https://review.openstack.org/167273 | 17:59 |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Proxy get method https://review.openstack.org/164351 | 17:59 |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Proxy delete method https://review.openstack.org/164310 | 17:59 |
etoews | i'm trying to make a call to the volume service with the sdk like | 18:00 |
etoews | conn.volume.get_volume(id='does_not_exist') | 18:00 |
etoews | but i get | 18:00 |
etoews | AttributeError: 'Connection' object has no attribute 'volume' | 18:00 |
briancurtin | what's the full stack trace | 18:00 |
etoews | my question is, where in the sdk does volume get wired up to Connection? | 18:00 |
etoews | that's pretty much it but... | 18:01 |
etoews | https://www.irccloud.com/pastebin/1SbiYZyB | 18:01 |
briancurtin | etoews: it's currently handled in openstack/user_preference.py as we construct those manually. i think there's a review out there to do them by discovery, and we've talked about stuff like that, but they're hooked up manually for right now | 18:03 |
briancurtin | in the __init__ you'll see where we've hooked up the other names. just have to do the same for volume | 18:03 |
etoews | does it happen in Connection._load(service)? | 18:03 |
briancurtin | that's where it actually gets instantiated, yes, based on what's in that UP list | 18:04 |
etoews | would you consider UserPreference.__init__ and Connection.__init__ to be the entry points for when the sdk is being initialized for first use? | 18:06 |
briancurtin | connection yes, UP no | 18:07 |
briancurtin | er, well UP is but it's implicit unless you have the need to specify preferences. it's not generally an entry point. connection is explicitly the entry point | 18:07 |
etoews | that makes sense | 18:08 |
etoews | UP.__init__ can actually come before or after depending on whether or not the user needs to specify an UP correct? | 18:09 |
briancurtin | if you want to have your own preference it has to come before. if you don't do anything, we create the default while setting up the Connection | 18:09 |
etoews | gotcha | 18:09 |
etoews | briancurtin: is there a particular reason volume doesn't have a _proxy.py? | 18:24 |
briancurtin | etoews: because it hasn't been created yet | 18:24 |
etoews | makes sense | 18:24 |
etoews | patch incoming | 18:25 |
openstackgerrit | Brian Curtin proposed stackforge/python-openstacksdk: Proxy create method https://review.openstack.org/168448 | 18:39 |
openstackgerrit | Everett Toews proposed stackforge/python-openstacksdk: Add a Proxy for the Volume service https://review.openstack.org/168449 | 18:41 |
*** pm90_ has quit IRC | 19:28 | |
*** britthouser has quit IRC | 20:39 | |
stevemar | dtroyer, i've seen you with a macbook | 21:00 |
stevemar | what are your thoughts on https://bugs.launchpad.net/python-openstackclient/+bug/1436898 | 21:00 |
openstack | Launchpad bug 1436898 in python-openstackclient "Unable to Launch OpenStack client on OSX" [Undecided,New] | 21:00 |
-openstackstatus- NOTICE: Gerrit maintenance commences in 1 hour at 22:00 UTC http://lists.openstack.org/pipermail/openstack-dev/2015-March/059948.html | 21:01 | |
stevemar | dhellmann, might also know ... since it seems to hit cliff code | 21:03 |
dtroyer | I heard dhellmann might be on vacation? | 21:03 |
dtroyer | stevemar: I have been seen with a MacBook, more than once actually | 21:03 |
stevemar | dtroyer, oh, didn't know he was afk | 21:04 |
stevemar | dtroyer, python + mac + cliff + locales = /me shudder | 21:04 |
dtroyer | I think we need more details on that bug, but I've never had a problem. I suspect he's not set with default Engligh/US configs like I have | 21:04 |
stevemar | probably not | 21:04 |
dtroyer | will look at hotel later after dinner… | 21:05 |
sigmavirus24 | dtroyer: what about looking at the hotel will help with that bug? | 21:06 |
sigmavirus24 | ;) | 21:06 |
dtroyer | it has windows…the kind I like to look at, not the kind on my mom's new laptop | 21:08 |
stevemar | ba dum tssst | 21:08 |
dtroyer | plus, I'll have Indian food in me so happy time will have commenced | 21:08 |
stevemar | dtroyer, still in nyc? | 21:09 |
dtroyer | yup, just wrapping up the day here… | 21:10 |
dtroyer | home tomorrow | 21:10 |
stevemar | so long nice transit system | 21:12 |
stevemar | dtroyer, you going to pycon in a few weeks? | 21:12 |
sigmavirus24 | dtroyer: have you spent much time in the NYC subways? | 21:15 |
*** trown is now known as trown|outttypeww | 21:21 | |
stevemar | sigmavirus24, oh if you wanted to know glance stuff in osc... https://bugs.launchpad.net/python-openstackclient/+bug/1402420 and https://blueprints.launchpad.net/python-openstackclient/+spec/image-member are food for thought | 21:36 |
openstack | Launchpad bug 1402420 in python-openstackclient "Image sharing does not seem to be supported" [Medium,In progress] - Assigned to wanghong (w-wanghong) | 21:36 |
sigmavirus24 | stevemar: yeah, Matt Kassawara is on my team and was annoying me about not being able to use openstackclient for the glance section | 21:37 |
stevemar | :( | 21:37 |
stevemar | there is *some* support for it | 21:37 |
stevemar | support for keystone and nova are by far the best | 21:38 |
sigmavirus24 | stevemar: yeah. not enough to do everything that's necessary though | 21:38 |
stevemar | glance/cinder/swift have decent support, but yes. not enough to do everything | 21:38 |
stevemar | neutron ... let's not go there | 21:38 |
sigmavirus24 | stevemar: hold on, let me try to make a bridge to get to neutron | 21:42 |
sigmavirus24 | nope failed | 21:42 |
*** stevemar has quit IRC | 21:42 | |
sigmavirus24 | lol | 21:42 |
sigmavirus24 | networking knows when you're poking fun at it | 21:42 |
*** mattfarina has quit IRC | 21:44 | |
-openstackstatus- NOTICE: Gerrit is offline for maintenance, ETA 22:30 UTC http://lists.openstack.org/pipermail/openstack-dev/2015-March/059948.html | 22:05 | |
*** ChanServ changes topic to "Gerrit is offline for maintenance, ETA 22:30 UTC http://lists.openstack.org/pipermail/openstack-dev/2015-March/059948.html" | 22:05 | |
*** ChanServ changes topic to "#openstack-sdks" | 22:33 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!