Results 9 comments of Yves-Gwenael Bourhis

I confirm this documentation works. The deprecation warning does not properly explain how to do it, and the docstring in the code was of strictly no help at all because...

I also can't find any documentation on how to use `hvac.api.auth_methods.kubernetes` properly. Only `auth_kubernetes` works like a charm (but with a deprecation warning). Can the warning be more helpful (with...

> It looks like it's working this way: > > ```python > from hvac import Client > from hvac.api.auth_methods import Kubernetes > > client = Client(url=url, verify=certificate_path) > Kubernetes(client.adapter).login(role=role, jwt=jwt)...

The major issue with the workaround described above is that it only works with channels_graphql_ws.GraphqlWsConsumer.strict_ordering = True Without this, the information is totally mixed up

I confirm the issue with Python 3.8.10 on Ubuntu 20.04.3 LTS.

Thanks @mtreinish To explain what we did is exactly as you mention in https://docs.openstack.org/tempest/latest/overview.html#quickstart : tempest init our_platform1 tempest init our platform2 # etc... And then for each platform we...

For your information, the model was generated on a legacy db with sqlacodegen: https://pypi.org/project/sqlacodegen/ I only have read access to the DB and can not modify it.

Thanks @shosca for your reply. file fields are different in django since they do not store the file data in the db, only the file access and flat files are...

@shosca for the moment I just replaced LONGBLOB by LONGTEXT(binary=True) and it seems to work. With LONGTEXT(binary=True) the ORM returns bytes instead of text. In fact this field can hold...