Skip to content

Commit bfa1fb9

Browse files
fix: Set Kusto wait strategy encoding to UTF-8 (#1567)
Co-authored-by: Andre Hofmeister <[email protected]>
1 parent b822e61 commit bfa1fb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Testcontainers.Kusto/KustoBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ protected override KustoBuilder Init()
5252
.WithMethod(HttpMethod.Post)
5353
.ForPort(KustoPort)
5454
.ForPath("/v1/rest/mgmt")
55-
.WithContent(() => new StringContent("{\"csl\":\".show cluster\"}", Encoding.Default, "application/json"))));
55+
.WithContent(() => new StringContent("{\"csl\":\".show cluster\"}", Encoding.UTF8, "application/json"))));
5656
}
5757

5858
/// <inheritdoc />

0 commit comments

Comments
 (0)