From 9655fcbcf054f22fc5f08ebb12be168f29d972f2 Mon Sep 17 00:00:00 2001 From: nghialv Date: Wed, 30 Oct 2024 19:14:59 +0700 Subject: [PATCH] Add hot-fix for breaking change after upgrading to v1.62.0 --- internal/status/status.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/internal/status/status.go b/internal/status/status.go index c7dbc8205952..654aa40b8230 100644 --- a/internal/status/status.go +++ b/internal/status/status.go @@ -160,7 +160,11 @@ func (s *Status) Details() []any { details = append(details, err) continue } - details = append(details, detail) + + // TODO: hot fix for https://github.com/grpc/grpc-go/issues/7679 + // https://github.com/grpc/grpc-go/pull/7724/files?file-filters%5B%5D=.go&show-viewed-files=true&show-deleted-files=false + // details = append(details, detail) + details = append(details, protoadapt.MessageV1Of(detail)) } return details }