Skip to content

Commit

Permalink
Add hot-fix for breaking change after upgrading to v1.62.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nghialv committed Oct 30, 2024
1 parent b48e355 commit 9655fcb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion internal/status/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 9655fcb

Please sign in to comment.