Skip to content

Commit 743f615

Browse files
committed
feat: replace port 8080 with 12345
also update any 808x ports
1 parent 6427d05 commit 743f615

File tree

1,686 files changed

+2374
-2374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,686 files changed

+2374
-2374
lines changed

incubator/command-dump/src/main/scripts/io/aklivity/zilla/runtime/command/dump/binding/grpc/streams/application/server.stream.rpc/message.exchange/client.rpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ connect "zilla://streams/app0"
2222
write zilla:begin.ext ${grpc:beginEx()
2323
.typeId(zilla:id("grpc"))
2424
.scheme("http")
25-
.authority("localhost:8080")
25+
.authority("localhost:12345")
2626
.service("example.EchoService")
2727
.method("EchoServerStream")
2828
.metadata("custom", "test")

incubator/command-dump/src/main/scripts/io/aklivity/zilla/runtime/command/dump/binding/grpc/streams/application/server.stream.rpc/message.exchange/server.rpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ accepted
2222
read zilla:begin.ext ${grpc:matchBeginEx()
2323
.typeId(zilla:id("grpc"))
2424
.scheme("http")
25-
.authority("localhost:8080")
25+
.authority("localhost:12345")
2626
.service("example.EchoService")
2727
.method("EchoServerStream")
2828
.metadata("custom", "test")

incubator/command-dump/src/main/scripts/io/aklivity/zilla/runtime/command/dump/binding/sse/streams/application/data/non.empty/client.rpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ connect "zilla://streams/app0"
2222
write zilla:begin.ext ${sse:beginEx()
2323
.typeId(zilla:id("sse"))
2424
.scheme("http")
25-
.authority("localhost:8080")
25+
.authority("localhost:12345")
2626
.path("/events/a8b7c6d5")
2727
.lastId(null)
2828
.build()}

incubator/command-dump/src/main/scripts/io/aklivity/zilla/runtime/command/dump/binding/sse/streams/application/data/non.empty/server.rpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ accepted
2222
read zilla:begin.ext ${sse:beginEx()
2323
.typeId(zilla:id("sse"))
2424
.scheme("http")
25-
.authority("localhost:8080")
25+
.authority("localhost:12345")
2626
.path("/events/a8b7c6d5")
2727
.lastId(null)
2828
.build()}

incubator/command-dump/src/main/scripts/io/aklivity/zilla/runtime/command/dump/binding/ws/streams/application/advise/client.sent.challenge/client.rpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ write zilla:begin.ext ${ws:beginEx()
2323
.typeId(zilla:id("ws"))
2424
.protocol(null)
2525
.scheme("http")
26-
.authority("localhost:8080")
26+
.authority("localhost:12345")
2727
.path("/echo")
2828
.build()}
2929

incubator/command-dump/src/main/scripts/io/aklivity/zilla/runtime/command/dump/binding/ws/streams/application/advise/client.sent.challenge/server.rpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ read zilla:begin.ext ${ws:beginEx()
2323
.typeId(zilla:id("ws"))
2424
.protocol(null)
2525
.scheme("http")
26-
.authority("localhost:8080")
26+
.authority("localhost:12345")
2727
.path("/echo")
2828
.build()}
2929

incubator/command-dump/src/test/resources/io/aklivity/zilla/runtime/command/dump/internal/GrpcServerStreamRpcApplicationIT_shouldEstablishServerStreamRpc.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ Zilla Frame
3232
Scheme: http
3333
Length: 4
3434
Scheme: http
35-
Authority: localhost:8080
35+
Authority: localhost:12345
3636
Length: 14
37-
Authority: localhost:8080
37+
Authority: localhost:12345
3838
Service: example.EchoService
3939
Length: 19
4040
Service: example.EchoService

incubator/command-dump/src/test/resources/io/aklivity/zilla/runtime/command/dump/internal/SseDataApplicationIT_shouldReceiveNonEmptyData.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ Zilla Frame
3232
Scheme: http
3333
Length: 4
3434
Scheme: http
35-
Authority: localhost:8080
35+
Authority: localhost:12345
3636
Length: 14
37-
Authority: localhost:8080
37+
Authority: localhost:12345
3838
Path: /events/a8b7c6d5
3939
Length: 16
4040
Path: /events/a8b7c6d5

incubator/command-dump/src/test/resources/io/aklivity/zilla/runtime/command/dump/internal/WsAdvisoryApplicationIT_shouldReceiveClientSentChallenge.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ Zilla Frame
3535
Scheme: http
3636
Length: 4
3737
Scheme: http
38-
Authority: localhost:8080
38+
Authority: localhost:12345
3939
Length: 14
40-
Authority: localhost:8080
40+
Authority: localhost:12345
4141
Path: /echo
4242
Length: 5
4343
Path: /echo

runtime/binding-http/src/test/java/io/aklivity/zilla/runtime/binding/http/internal/codec/Http2HeadersFWTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void decode()
6868
assertEquals("GET", headers.get(":method"));
6969
assertEquals("http", headers.get(":scheme"));
7070
assertEquals("/", headers.get(":path"));
71-
assertEquals("127.0.0.1:8080", headers.get(":authority"));
71+
assertEquals("127.0.0.1:12345", headers.get(":authority"));
7272
}
7373

7474
@Test

0 commit comments

Comments
 (0)