Replaced string concatenation with interpolation

This commit is contained in:
Thorsten Sommer 2026-03-14 11:42:34 +01:00
parent 21de20e9b4
commit 463ff1672c
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -43,8 +43,8 @@ public class QdrantClientImplementation : DatabaseClient
private async Task<string> GetVersion()
{
var operation = await this.GrpcClient.HealthAsync();
return "v"+operation.Version;
var operation = await this.GrpcClient.HealthAsync();
return $"v{operation.Version}";
}
private async Task<string> GetCollectionsAmount()