gnodet-bot commented on code in PR #26606:
URL: https://github.com/apache/camel/pull/26606#discussion_r4054207808


##########
dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/EndpointHeaderBuilders.java:
##########
@@ -1685,6 +1685,21 @@ public static 
GrpcEndpointBuilderFactory.GrpcHeaderNameBuilder grpc() {
     public static 
HashicorpVaultEndpointBuilderFactory.HashicorpVaultHeaderNameBuilder 
hashicorpVault() {
         return 
HashicorpVaultEndpointBuilderFactory.HashicorpVaultHeaderNameBuilder.INSTANCE;
     }
+    /**
+     * Hazelcast Atomic Number (camel-hazelcast)
+     * Increment, decrement, set, etc. Hazelcast atomic number (a grid wide
+     * number).
+     * 
+     * Category: cache,clustering
+     * Since: 2.7
+     * Maven coordinates: org.apache.camel:camel-hazelcast
+     * 
+     * @return the dsl builder for the headers' name.
+     */
+    @Deprecated
+    public static 
HazelcastAtomicnumberEndpointBuilderFactory.HazelcastAtomicnumberHeaderNameBuilder
 hazelcastAtomicvalue() {

Review Comment:
   ⛔ **Compile blocker — `HazelcastAtomicnumberEndpointBuilderFactory` was 
removed from main**
   
   This method (and the one below it) reference 
`HazelcastAtomicnumberEndpointBuilderFactory`, which no longer exists — it was 
deleted in commit `b8debda9a865` ("Removal of Hazelcast-atomicvalue") merged 
into `main` on 2026-09-15, after this PR's `merge main` commit. The DSL 
generator regenerated this file against a Camel state that still had 
`camel-hazelcast-atomicvalue`.
   
   **Fix:** rebase/merge `upstream/main` into this branch, then re-run `./mvnw 
-pl dsl/camel-endpointdsl generate-sources -Dfastinstall` and commit the 
result. The stale `hazelcastAtomicvalue()` methods will vanish.



##########
dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java:
##########
@@ -7093,6 +7093,50 @@ public static 
HashicorpVaultEndpointBuilderFactory.HashicorpVaultEndpointBuilder
     public static 
HashicorpVaultEndpointBuilderFactory.HashicorpVaultEndpointBuilder 
hashicorpVault(String componentName, String path) {
         return 
HashicorpVaultEndpointBuilderFactory.endpointBuilder(componentName, path);
     }
+    /**
+     * Hazelcast Atomic Number (camel-hazelcast)
+     * Increment, decrement, set, etc. Hazelcast atomic number (a grid wide
+     * number).
+     * 
+     * Category: cache,clustering
+     * Since: 2.7
+     * Maven coordinates: org.apache.camel:camel-hazelcast
+     * 
+     * Syntax: <code>hazelcast-atomicvalue:cacheName</code>
+     * 
+     * Path parameter: cacheName (required)
+     * The name of the cache
+     * 
+     * @param path cacheName
+     * @return the dsl builder
+     */
+    @Deprecated
+    public static 
HazelcastAtomicnumberEndpointBuilderFactory.HazelcastAtomicnumberEndpointBuilder
 hazelcastAtomicvalue(String path) {

Review Comment:
   ⛔ **Compile blocker — same as above**
   
   `HazelcastAtomicnumberEndpointBuilderFactory` referenced here (and in the 
`hazelcastAtomicvalue(String, String)` overload below) does not exist in 
current `main`. These methods were generated against a stale Camel state. Same 
fix: rebase on `main` and regenerate.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to