Skip to content

Commit 0346e83

Browse files
authored
Merge branch 'main' into AddIDNASupport
2 parents 9d43f76 + 0aaa3bb commit 0346e83

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

scenarios/rejection.benchmarks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ scenarios:
6969
connections: 32
7070
serverScheme: https
7171
customHeaders:
72-
- X-Custom: "Québec"
72+
- "X-Custom: Québec"
7373

7474
httpsys-hostheader-mismatch:
7575
application:
@@ -81,7 +81,7 @@ scenarios:
8181
connections: 32
8282
serverScheme: https
8383
customHeaders:
84-
- Host: "google.com"
84+
- "Host: google.com"
8585

8686
# Kestrel
8787

@@ -106,7 +106,7 @@ scenarios:
106106
connections: 32
107107
serverScheme: https
108108
customHeaders:
109-
- X-Custom: "Québec"
109+
- "X-Custom: Québec"
110110

111111
kestrel-hostheader-mismatch:
112112
application:
@@ -118,4 +118,4 @@ scenarios:
118118
connections: 32
119119
serverScheme: https
120120
customHeaders:
121-
- Host: "google.com"
121+
- "Host: google.com"

scenarios/tls.benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ scenarios:
169169
job: dockerLinuxKestrelServer
170170
buildArguments:
171171
# openssl version to install
172-
- OPENSSL_VERSION="3.3.2-r4"
172+
- OPENSSL_VERSION="3.3.3-r0"
173173
# lookup for openssl+branch version here https://pkgs.alpinelinux.org/packages?name=openssl&branch=v3.20&repo=&arch=x86_64
174174
- ALPINE_BRANCH="v3.21"
175175
load:

src/BenchmarksApps/Grpc/BasicGoServer/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.21
55
require (
66
google.golang.org/grpc v1.64.1
77
google.golang.org/protobuf v1.34.1
8+
github.com/golang/glog v1.2.4
89
)
910

1011
require (

src/BenchmarksApps/Grpc/GoClient/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.21
55
require (
66
google.golang.org/grpc v1.65.0
77
google.golang.org/protobuf v1.34.2
8+
github.com/golang/glog v1.2.4
89
)
910

1011
require (

src/BenchmarksApps/Grpc/GoServer/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.21
55
require (
66
google.golang.org/grpc v1.65.0
77
google.golang.org/protobuf v1.34.2
8+
github.com/golang/glog v1.2.4
89
)
910

1011
require (

0 commit comments

Comments
 (0)