Alex Kavanagh

Results 84 comments of Alex Kavanagh

It looks like lxd is closing the connection (Connection reset by peer). 3.0.3 is quite an old (but still maintained) version of lxd, (I'm guessing the bionic packaged version). Does...

Ah, so this is some variation of the repeat of the long running test issue that's come back to bite, several times now. It seems that the websocket code is...

The nicer way to do this, for the moment, is to use `json`: ```python import json import pylxd client = pylxd.Client() c = client.containers.get('test') idmap = json.loads(c.config['volatile.last_state.idmap']) hostid = idmap[0]['Hostid']...

Really interested in this too. We (as in the [openstack-charmers](https://github.com/openstack-charmers) team) 'borrowed' the ideas from @greg-hellings 's plugin to do a tox 3 plugin for [buck](https://github.com/openstack-charmers/buck), and then I did...

> I think this is where you're getting it wrong. You're not supposed to have a plugin that supports both 3 and 4. tox 3 is deprecated and let it...

@greg-hellings I did roughly the same thing, but went in a slightly different direction. I used import exceptions to detect which version of tox, like you, but I made all...

Yeah, this is annoying me as well. And we're not the only ones, as PR #430 has be added to address this. Now it just needs to be merged. However,...

@arif-ali if the additional items are pulled out into a new context, as @wolsen suggests, it would look something like: ```python class KeystoneAuditMiddleware(OSContextGenerator): def __init__(self, service_name): self.service_name = service_name def...

@swalladge unfortunately, this PR now has conflicts with the master branch; please could you take a look, and I'll see what I can do about getting it merged. Thanks.