Skip to content

Commit ed7452b

Browse files
Fixed the build error
1 parent d0a3169 commit ed7452b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Servers/Kestrel/perf/Microbenchmarks/Http2/Http2ConnectionBenchmarkBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public virtual void GlobalSetup()
5858
var cookies = new StringValues("0=1");
5959
for (var index = 1; index < NumCookies; index++)
6060
{
61-
cookies = cookies.Append($"{index}={index + 1}");
61+
cookies = (StringValues)cookies.Append($"{index}={index + 1}");
6262
}
6363
_httpRequestHeaders[HeaderNames.Cookie] = cookies;
6464
}

0 commit comments

Comments
 (0)