Is your feature request related to a problem? Please describe.
Currently, grpc_stream_h.erl is using erlang:get_stracktrace() which was removed in OTP 24.
Describe the solution you'd like
Looks like we need another case statement checking the OTP release and try/catch different for 24+. It was deprecated in OTP 23 and removed in OTP 24.
Is your feature request related to a problem? Please describe. Currently,
grpc_stream_h.erl
is usingerlang:get_stracktrace()
which was removed in OTP 24.Describe the solution you'd like Looks like we need another case statement checking the OTP release and try/catch different for 24+. It was deprecated in OTP 23 and removed in OTP 24.
https://erlang.org/doc/general_info/removed.html#functions-removed-in-otp-23
https://www.erlang.org/erlang-enhancement-proposals/eep-0047.html
Describe alternatives you've considered It's not an option for me to downgrade to OTP 23 or lower.
Additional context Add any other context or screenshots about the feature request here.