We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d60e995 commit eb694abCopy full SHA for eb694ab
src/Servers/HttpSys/src/RequestProcessing/Request.cs
@@ -120,7 +120,7 @@ internal Request(RequestContext requestContext)
120
internal ulong RawConnectionId { get; }
121
122
// No ulongs in public APIs...
123
- public long ConnectionId => (long)RawConnectionId;
+ public long ConnectionId => RawConnectionId != 0 ? (long)RawConnectionId : (long)UConnectionId;
124
125
internal ulong RequestId { get; }
126
0 commit comments