Skip to content

Commit

Permalink
examples/features/csm_observability: Make CSM Observability example s…
Browse files Browse the repository at this point in the history
…erver listen on an IPV4 address (grpc#7933) (grpc#7934)
  • Loading branch information
zasweq authored and purnesh42H committed Dec 18, 2024
1 parent 9355fbc commit 1cacf6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/features/csm_observability/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func main() {
cleanup := csm.EnableObservability(context.Background(), opentelemetry.Options{MetricsOptions: opentelemetry.MetricsOptions{MeterProvider: provider}})
defer cleanup()

lis, err := net.Listen("tcp", ":"+*port)
lis, err := net.Listen("tcp4", "0.0.0.0:"+*port)
if err != nil {
log.Fatalf("Failed to listen: %v", err)
}
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
package grpc

// Version is the current grpc version.
const Version = "1.69.1"
const Version = "1.69.2-dev"

0 comments on commit 1cacf6c

Please sign in to comment.