Hi people.
We have implemented an Ingress with Basic Authentication in front of Qdrant service. Using requests and httpx directly works fine (setting auth). But sending the auth parameter to qdrant-client is not being handled correctly (client = QdrantClient(host="domain-to-svc", port=6333, https=True, auth=('ferrajoli', '1234567890'))). Looking at client implementation, our understanding was that this keyword argument would be sent to httpx.Client on the chain of kwargs. Any clues on implementing basic auth?
https://github.com/qdrant/qdrant_client/blob/c33c57d58f853c1b1dcce9d1c58e938c5001575b/qdrant_client/http/api_client.py#L51