Fix high concurrency test on later versions of Vert.x (#2378)
* Fix high concurrency test on later versions of Vert.x * Format
This commit is contained in:
parent
eaa8604e96
commit
e55e4f1976
|
@ -59,7 +59,7 @@ public class HttpRequestInstrumentation implements TypeInstrumentation {
|
|||
HttpRequestInstrumentation.class.getName() + "$AttachContextAdvice");
|
||||
|
||||
transformers.put(
|
||||
isMethod().and(nameStartsWith("write").and(isPrivate())),
|
||||
isMethod().and(isPrivate()).and(nameStartsWith("write").or(nameStartsWith("connected"))),
|
||||
HttpRequestInstrumentation.class.getName() + "$MountContextAdvice");
|
||||
return transformers;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue