Results 3 comments of gpww

I also found this bug: Public async Task DeleteCollectionAsync(string collectionName, CancellationToken cancellationToken = default) { //if (!await this._qdrantClient.DoesCollectionExistAsync(collectionName, cancellationToken).ConfigureAwait(false)) if (await this._qdrantClient.DoesCollectionExistAsync(collectionName, cancellationToken).ConfigureAwait(false)) { await this._qdrantClient.DeleteCollectionAsync(collectionName, cancellationToken).ConfigureAwait(false); }

> Hi @gpww, > > the collection exists API was added in qdrant release [v1.8.0](https://github.com/qdrant/qdrant/releases/tag/v1.8.0). Are you running against at least v1.8.0? yes, as the following screen shot: ![1713282272061](https://github.com/qdrant/qdrant-dotnet/assets/11976499/9edfbed1-7734-4f6d-a65f-d17ea3d7bca5) I...