Re: [openstack-dev] [python3] Enabling py37 unit tests

2018-10-15 Thread Tim Burke
> On Oct 15, 2018, at 5:00 PM, Monty Taylor wrote: > > If we decide as a community to shift our testing of python3 to be 3.6 - or > even 3.7 - as long as we still are testing 2.7, I'd argue we're adequately > covered for 3.5. That's not enough for me to be willing to declare support. I'll

Re: [openstack-dev] GUI for Swift object storage

2018-09-18 Thread Tim Burke
Hate to nitpick, but Cyberduck is licensed GPLv3 -- you can browse the source (and confirm the license) at https://trac.cyberduck.io/browser/trunk and https://trac.cyberduck.io/ indicates the source is available via git or

Re: [openstack-dev] Do you hate the new gerrit thing where the cursor jumps all over?

2017-10-20 Thread Tim Burke
OMG yes! I can actually search when looking at a diff now! Thanks Matt. Tim > On Oct 20, 2017, at 9:02 AM, Matt Riedemann wrote: > > When you're lower in a change trying to expand comments and it always jumps > you back up to the top? > > Since not everyone might know

Re: [openstack-dev] [docs][neutron] checking link integrity in the gate

2017-09-05 Thread Tim Burke
On Sep 5, 2017, at 10:53 AM, Doug Hellmann wrote: > > Excerpts from Boden Russell's message of 2017-09-05 11:25:34 -0600: >> >> On 9/5/17 11:03 AM, Doug Hellmann wrote: >>> Is eventlet being initialized (or partially initialized) when a module >>> from the application is

Re: [openstack-dev] [all] PBR 2.0.0 release *may* cause gate failures

2017-03-01 Thread Tim Burke
On Mar 1, 2017, at 4:57 AM, Sean Dague wrote: > I also wonder if we can grant the release team +2 permissions on > everything in OpenStack so that fixes like this can be gotten in quickly > without having to go chase a bunch of teams. I would be very much opposed to this. Isn't

Re: [openstack-dev] [Nova] python 3 tests hate my exception handling

2017-01-03 Thread Tim Burke
Looks like keystoneauth1.exceptions.http.__all__ includes a from_response function. Maybe add a if isinstance(..., BaseException) before appending? Tim > On Jan 3, 2017, at 6:48 PM, Michael Still wrote: > > So... > > Our python3 tests hate [1] my exception handling for

Re: [openstack-dev] swiftclient report that header value 120 must be of type str or bytes, not , the detail info is like the following

2016-08-16 Thread Tim Burke
This is the result of a fairly recent change in requests [1], released 8 Aug. While the enforcement of header-value types is fairly recent, they've documented since 2.0.1 that headers must be byte- or unicode-strings [2], and more recently clarified it in their quick start guide [3]. It looks

Re: [openstack-dev] [Swift] xbcloud with Swift Mitaka

2016-07-12 Thread Tim Burke
Hi German, It looks like you're using the Swift proxy server in your auth URL. Since Keystone is handling user authentication, you'll want to use that server. As part of the auth response, Keystone will provide a catalog of services which should include Swift, and I expect your client will use

Re: [openstack-dev] [swift] Support for unicode filename in tempurl middleware

2016-06-29 Thread Tim Burke
Hi Antonio, That sounds like a bug! Looks like we decode the temporal key coming in from the terminal, but don't properly encode it when getting the HMAC. This generates the UnicodeEncodeError on python 2.7, and I've submitted https://review.openstack.org/#/c/335615/ to address this. I'm not