gpww
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:  I...