Skip to content

Commit 723a9c3

Browse files
Fix formatting
1 parent 61b8142 commit 723a9c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceControl.Audit.Persistence.RavenDB/MemoryInformationRetriever.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ record MemoryInformation
2727
var responseDto = JsonSerializer.Deserialize<ResponseDto>(await httpResponse.Content.ReadAsStringAsync(cancellationToken));
2828

2929
var values = responseDto.MemoryInformation.DirtyMemory.Split(' ');
30-
if (!string.Equals(values[1],"KBytes", StringComparison.OrdinalIgnoreCase))
30+
if (!string.Equals(values[1], "KBytes", StringComparison.OrdinalIgnoreCase))
3131
{
3232
throw new InvalidOperationException($"Unexpected response. Was expecting memory details in KBytes, instead received: {responseDto.MemoryInformation.DirtyMemory}");
3333
}

0 commit comments

Comments
 (0)