Skip to content

Commit

Permalink
Fix RESTEasy Reactive testsuite
Browse files Browse the repository at this point in the history
The failure showed up in a few PRs
(like quarkusio#28429 and quarkusio#27526)
  • Loading branch information
geoand authored and tmihalac committed Oct 27, 2022
1 parent bae07bc commit 0961691
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ public static void generate(Map<DotName, MethodInfo> resourcesThatNeedCustomProd
ResultHandle quarkusRestContextHandle = m.invokeVirtualMethod(getContextMethodCreator.getMethodDescriptor(),
m.getThis());
ResultHandle extractorHandle = m.newInstance(
MethodDescriptor.ofConstructor(CookieParamExtractor.class, String.class),
m.getMethodParam(0));
MethodDescriptor.ofConstructor(CookieParamExtractor.class, String.class, String.class),
m.getMethodParam(0), m.loadNull());
ResultHandle resultHandle = m.invokeVirtualMethod(MethodDescriptor.ofMethod(CookieParamExtractor.class,
"extractParameter", Object.class, ResteasyReactiveRequestContext.class), extractorHandle,
quarkusRestContextHandle);
Expand Down

0 comments on commit 0961691

Please sign in to comment.