Skip to content

Commit

Permalink
Remove -H:+InlineBeforeAnalysis from Spring RabbitMQ test once Quarku…
Browse files Browse the repository at this point in the history
…s has InlineBeforeAnalysisBuildItem apache#2416
  • Loading branch information
ppalaga committed Jun 4, 2021
1 parent a2b6e47 commit a3617e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import io.quarkus.deployment.annotations.BuildProducer;
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.FeatureBuildItem;
import io.quarkus.deployment.builditem.nativeimage.InlineBeforeAnalysisBuildItem;
import io.quarkus.deployment.builditem.nativeimage.NativeImageProxyDefinitionBuildItem;
import org.springframework.amqp.rabbit.connection.ChannelProxy;
import org.springframework.aop.SpringProxy;
Expand All @@ -43,4 +44,9 @@ void initProxies(BuildProducer<NativeImageProxyDefinitionBuildItem> proxies) {
DecoratingProxy.class.getCanonicalName()));
}

@BuildStep
InlineBeforeAnalysisBuildItem inlineBeforeAnalysis() {
return new InlineBeforeAnalysisBuildItem();
}

}

This file was deleted.

0 comments on commit a3617e9

Please sign in to comment.