Fixes issue 975 by removing the special handling that was wrapped around instrumented functions that experience a panic(nil). Previously the code sought to keep the pre-Go-1.21 behavior of not propagating nil panics, but a better approach is to not treat them any differently than other panics.
Fixes issue 975 by removing the special handling that was wrapped around instrumented functions that experience a
panic(nil)
. Previously the code sought to keep the pre-Go-1.21 behavior of not propagating nil panics, but a better approach is to not treat them any differently than other panics.