Skip to content

Commit 64b7901

Browse files
author
Ignacio Bonafonte
authored
Merge branch 'main' into Downgrade-swift-version
2 parents 8090bb0 + 664ee4d commit 64b7901

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Tests/ExportersTests/OpenTelemetryProtocol/OtlpMetricExporterTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class OtlpMetricExproterTests: XCTestCase {
7575
// Start the server and print its address once it has started.
7676
let server = Server.insecure(group: serverGroup)
7777
.withServiceProviders([fakeCollector])
78-
.bind(host: "localhost", port: 55680)
78+
.bind(host: "localhost", port: 4317)
7979

8080
server.map {
8181
$0.channel.localAddress
@@ -87,7 +87,7 @@ class OtlpMetricExproterTests: XCTestCase {
8787

8888
func startChannel() -> ClientConnection {
8989
let channel = ClientConnection.insecure(group: channelGroup)
90-
.connect(host: "localhost", port: 55680)
90+
.connect(host: "localhost", port: 4317)
9191
return channel
9292
}
9393

Tests/ExportersTests/OpenTelemetryProtocol/OtlpTraceExporterTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class OtlpTraceExporterTests: XCTestCase {
9595
// Start the server and print its address once it has started.
9696
let server = Server.insecure(group: serverGroup)
9797
.withServiceProviders([fakeCollector])
98-
.bind(host: "localhost", port: 55680)
98+
.bind(host: "localhost", port: 4317)
9999

100100
server.map {
101101
$0.channel.localAddress
@@ -107,7 +107,7 @@ class OtlpTraceExporterTests: XCTestCase {
107107

108108
func startChannel() -> ClientConnection {
109109
let channel = ClientConnection.insecure(group: channelGroup)
110-
.connect(host: "localhost", port: 55680)
110+
.connect(host: "localhost", port: 4317)
111111
return channel
112112
}
113113
}

0 commit comments

Comments
 (0)