mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 21:51:37 +00:00
Replaced string concatenation with interpolation
This commit is contained in:
parent
21de20e9b4
commit
463ff1672c
@ -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()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user