You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, the new Erlang 21 is deprecating erlang:get_stacktrace() in order to replace with a new feature to retrieve the stacktrace only in the catch clause. Currently I can see this call being used in xdb_lib.erl.
For now it is possible to silence the warning and make the project compilable. Another option would be to pass exception across all the calls between a catch and xdb_lib:raise, or overall exception strategy should be changed.
What do you think should be the best way to go about it?
The text was updated successfully, but these errors were encountered:
Hi, the new Erlang 21 is deprecating
erlang:get_stacktrace()
in order to replace with a new feature to retrieve the stacktrace only in thecatch
clause. Currently I can see this call being used inxdb_lib.erl
.For now it is possible to silence the warning and make the project compilable. Another option would be to pass exception across all the calls between a catch and
xdb_lib:raise
, or overall exception strategy should be changed.What do you think should be the best way to go about it?
The text was updated successfully, but these errors were encountered: