Skip to content

Commit c5a2825

Browse files
LoopedBard3Copilot
andauthored
Add net11.0 framework to gRPC proxy load jobs (#2163)
The grpc-dotnet master branch now multi-targets net10.0 (v2.76.0), causing NETSDK1045 errors on benchmark agents with only SDK 9.0. Add --load.framework net11.0 to all gRPC proxy scenarios (YARP, NGinx, Envoy) so crank installs an SDK that supports the net10.0 transitive dependencies. This is consistent with how grpc-scenarios.yml already handles this. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 501932f commit c5a2825

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build/proxies-scenarios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ parameters:
3131
condition: 'true'
3232
- displayName: YARP gRPC
3333
scenario: proxy-yarp-grpc
34-
arguments: $(proxyGRPCJobs) --property proxy=yarp --application.framework net11.0
34+
arguments: $(proxyGRPCJobs) --property proxy=yarp --application.framework net11.0 --load.framework net11.0
3535
supportsGRPC: true
3636
condition: 'true'
3737
- displayName: YARP-net80
@@ -59,7 +59,7 @@ parameters:
5959
condition: Math.round(Date.now() / 43200000) % 5 == 0 # once every 5 half-days
6060
- displayName: NGinx gRPC
6161
scenario: proxy-nginx-grpc
62-
arguments: $(proxyGRPCJobs) --property proxy=nginx --variable warmup=0
62+
arguments: $(proxyGRPCJobs) --property proxy=nginx --variable warmup=0 --load.framework net11.0
6363
supportsGRPC: true
6464
condition: Math.round(Date.now() / 43200000) % 5 == 1 # once every 5 half-days
6565
- displayName: HAProxy
@@ -77,7 +77,7 @@ parameters:
7777
condition: Math.round(Date.now() / 43200000) % 5 == 3 # once every 5 half-days
7878
- displayName: Envoy gRPC
7979
scenario: proxy-envoy-grpc
80-
arguments: $(proxyGRPCJobs) --property proxy=envoy
80+
arguments: $(proxyGRPCJobs) --property proxy=envoy --load.framework net11.0
8181
supportsGRPC: true
8282
condition: Math.round(Date.now() / 43200000) % 5 == 4 # once every 5 half-days
8383

0 commit comments

Comments
 (0)