Skip to content

Commit

Permalink
PR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gjcairo committed Jan 24, 2025
1 parent 027920e commit f941b31
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .spi.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: 1
builder:
configs:
- documentation_targets: [GRPCHealthService, GRPCInterceptors]
- documentation_targets: [GRPCHealthService, GRPCOTelTracingInterceptors]
swift_version: 6.0
12 changes: 6 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ let products: [Product] = [
targets: ["GRPCReflectionService"]
),
.library(
name: "GRPCOTelTracingInterceptor",
targets: ["GRPCOTelTracingInterceptor"]
name: "GRPCOTelTracingInterceptors",
targets: ["GRPCOTelTracingInterceptors"]
),
.library(
name: "GRPCServiceLifecycle",
Expand Down Expand Up @@ -115,19 +115,19 @@ let targets: [Target] = [
swiftSettings: defaultSwiftSettings
),

// gRPC OTel tracing interceptor.
// gRPC OTel tracing interceptors.
.target(
name: "GRPCOTelTracingInterceptor",
name: "GRPCOTelTracingInterceptors",
dependencies: [
.product(name: "GRPCCore", package: "grpc-swift"),
.product(name: "Tracing", package: "swift-distributed-tracing"),
],
swiftSettings: defaultSwiftSettings
),
.testTarget(
name: "GRPCOTelTracingInterceptorTests",
name: "GRPCOTelTracingInterceptorsTests",
dependencies: [
.target(name: "GRPCOTelTracingInterceptor"),
.target(name: "GRPCOTelTracingInterceptors"),
.product(name: "GRPCCore", package: "grpc-swift"),
.product(name: "Tracing", package: "swift-distributed-tracing"),
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import GRPCCore
import GRPCOTelTracingInterceptor
import GRPCOTelTracingInterceptors
import Testing
import Tracing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import GRPCOTelTracingInterceptor
import GRPCOTelTracingInterceptors
import Testing

@Suite("PeerAddress tests")
Expand Down

0 comments on commit f941b31

Please sign in to comment.