Skip to content

Commit 76477de

Browse files
Ladicekmetacosm
authored andcommitted
Dev UI: always produce JsonRPCProvidersBuildItem
This is due to an upcoming change in Execution Model Validation [1] where we need the `JsonRPCProvidersBuildItem` produced always, not only in dev mode. JSON RPC providers can use execution model affecting annotations, so we need to know about them, otherwise a non-dev build would fail with an incorrect validation error. [1] quarkusio/quarkus#46965 (cherry picked from commit 5eb7cc7)
1 parent 9e25e9c commit 76477de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/deployment/src/main/java/io/quarkiverse/operatorsdk/deployment/devui/DevUIProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ CardPageBuildItem create() {
2222
}
2323

2424
@SuppressWarnings("unused")
25-
@BuildStep(onlyIf = IsDevelopment.class)
25+
@BuildStep
2626
JsonRPCProvidersBuildItem createJsonRPCService() {
2727
return new JsonRPCProvidersBuildItem(JSONRPCService.class);
2828
}

0 commit comments

Comments
 (0)