Skip to content

Commit f941879

Browse files
committed
non tls test
1 parent 45df768 commit f941879

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crt/aws-c-http

samples/HttpClientCanary/src/main/java/com/canary/Http2StreamManagerCanary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ private void runCanary(int warmupLoops, int loops, long timerSecs) throws Except
197197
public static void main(String[] args) throws Exception {
198198
/* TODO: make all those number configurable */
199199
Http2StreamManagerCanary canary = new Http2StreamManagerCanary();
200-
canary.uri = new URI("https://localhost:8443/echo");
200+
canary.uri = new URI("http://localhost:8080/");
201201
canary.benchNum = 100;
202202
canary.runCanary(5, 5, 30);
203203
}

samples/HttpClientCanary/src/main/java/com/canary/SDKNettyClientCanary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private void runCanary(int warmupLoops, int loops, long timerSecs) throws Except
143143
public static void main(String[] args) throws Exception {
144144
SDKNettyClientCanary canary = new SDKNettyClientCanary();
145145
/* TODO: make all those number configurable */
146-
canary.uri = new URI("https://localhost:8443/echo");
146+
canary.uri = new URI("http://localhost:8080/");
147147
canary.benchNum = 100;
148148
canary.runCanary(5, 5, 30);
149149
}

0 commit comments

Comments
 (0)