Skip to content

Commit

Permalink
Fix dev-mode issue with generated classes for Quarkus REST converters
Browse files Browse the repository at this point in the history
Fixes: #39598
  • Loading branch information
geoand committed Mar 26, 2024
1 parent 316f8b7 commit 8e353b4
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,7 @@ public void setupEndpoints(ApplicationIndexBuildItem applicationIndexBuildItem,
initConverters.getMethodParam(0));
}))
.setConverterSupplierIndexerExtension(new GeneratedConverterIndexerExtension(
(name) -> new GeneratedClassGizmoAdaptor(generatedClassBuildItemBuildProducer,
applicationClassPredicate.test(name))))
(name) -> new GeneratedClassGizmoAdaptor(generatedClassBuildItemBuildProducer, true)))
.setHasRuntimeConverters(!paramConverterProviders.getParamConverterProviders().isEmpty())
.setClassLevelExceptionMappers(
classLevelExceptionMappers.isPresent() ? classLevelExceptionMappers.get().getMappers()
Expand Down

0 comments on commit 8e353b4

Please sign in to comment.