From bc83487ac40c020f046f89cf880a39d3bf23485b Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Mon, 9 Mar 2020 21:39:52 -0700 Subject: [PATCH] Merge some straggling master fixes down to preview2 (#19707) Co-authored-by: Hao Kung Co-authored-by: James Newton-King Co-authored-by: Doug Bunting <6431421+dougbu@users.noreply.github.com> --- .azure/pipelines/ci.yml | 2 +- eng/targets/Helix.Common.props | 2 +- .../test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml index ae190ceefd..36360ae5fd 100644 --- a/.azure/pipelines/ci.yml +++ b/.azure/pipelines/ci.yml @@ -683,7 +683,7 @@ stages: # Helix ARM64 - template: jobs/default-build.yml parameters: - condition: notin(variables['Build.Reason'], 'PullRequest') + condition: and(eq(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) jobName: Helix_arm64_daily jobDisplayName: "Tests: Helix ARM64 Daily" agentOs: Linux diff --git a/eng/targets/Helix.Common.props b/eng/targets/Helix.Common.props index a49cbc6a0a..e77bcd8828 100644 --- a/eng/targets/Helix.Common.props +++ b/eng/targets/Helix.Common.props @@ -37,7 +37,7 @@ - + diff --git a/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs b/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs index 26b146843b..b0595d4545 100644 --- a/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs +++ b/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http2/Http2ConnectionTests.cs @@ -225,7 +225,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Tests await StartStreamAsync(1, _browserRequestHeaders, endStream: true); await ExpectAsync(Http2FrameType.HEADERS, - withLength: 37, + withLength: 33, withFlags: (byte)Http2HeadersFrameFlags.END_HEADERS, withStreamId: 1); await ExpectAsync(Http2FrameType.DATA,