mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 17:31:37 +00:00
Replaced string concatenation with interpolation
This commit is contained in:
parent
21de20e9b4
commit
463ff1672c
@ -44,7 +44,7 @@ public class QdrantClientImplementation : DatabaseClient
|
|||||||
private async Task<string> GetVersion()
|
private async Task<string> GetVersion()
|
||||||
{
|
{
|
||||||
var operation = await this.GrpcClient.HealthAsync();
|
var operation = await this.GrpcClient.HealthAsync();
|
||||||
return "v"+operation.Version;
|
return $"v{operation.Version}";
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<string> GetCollectionsAmount()
|
private async Task<string> GetCollectionsAmount()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user