This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-4.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 363cd15624f56a7050ca702f79a4c2909cab3a66
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Wed Oct 2 12:45:00 2024 +0200

    CAMEL-21300: camel-platform-http - Consumer should have option to control 
if writing response failing should cause Exchange to fail
---
 .../org/apache/camel/kotlin/components/PlatformHttpUriDsl.kt      | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git 
a/dsl/camel-kotlin-api/src/generated/kotlin/org/apache/camel/kotlin/components/PlatformHttpUriDsl.kt
 
b/dsl/camel-kotlin-api/src/generated/kotlin/org/apache/camel/kotlin/components/PlatformHttpUriDsl.kt
index 1769eca254e..4a9d067afb8 100644
--- 
a/dsl/camel-kotlin-api/src/generated/kotlin/org/apache/camel/kotlin/components/PlatformHttpUriDsl.kt
+++ 
b/dsl/camel-kotlin-api/src/generated/kotlin/org/apache/camel/kotlin/components/PlatformHttpUriDsl.kt
@@ -48,6 +48,14 @@ public class PlatformHttpUriDsl(
     it.property("consumes", consumes)
   }
 
+  public fun handleWriteResponseError(handleWriteResponseError: String) {
+    it.property("handleWriteResponseError", handleWriteResponseError)
+  }
+
+  public fun handleWriteResponseError(handleWriteResponseError: Boolean) {
+    it.property("handleWriteResponseError", 
handleWriteResponseError.toString())
+  }
+
   public fun httpMethodRestrict(httpMethodRestrict: String) {
     it.property("httpMethodRestrict", httpMethodRestrict)
   }

Reply via email to