We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c92a06 commit b082269Copy full SHA for b082269
src/main/java/tech/httptoolkit/javaagent/advice/reactornetty/ReactorNettyResetAllConfigAdvice.java
@@ -55,12 +55,8 @@ public class ReactorNettyResetAllConfigAdvice {
55
@Advice.OnMethodEnter
56
public static void beforeConstructor(
57
@Advice.Argument(value=0) HttpClientConfig baseHttpConfig
58
- ) {
59
- try {
60
- configSslField.set(baseHttpConfig, agentSslProvider);
61
- proxyProviderField.set(baseHttpConfig, agentProxyProvider);
62
- } catch (IllegalAccessException e) {
63
- throw new RuntimeException(e);
64
- }
+ ) throws Exception {
+ configSslField.set(baseHttpConfig, agentSslProvider);
+ proxyProviderField.set(baseHttpConfig, agentProxyProvider);
65
}
66
0 commit comments