You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by je...@apache.org on 2024/01/04 20:26:13 UTC

(camel) 02/02: CAMEL-17719: camel-salesforce: Add operation to get event schemas

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

jeremyross pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 682a7de070c9110093f763b00db59d9966bfab82
Author: Jeremy Ross <je...@gmail.com>
AuthorDate: Thu Jan 4 14:25:52 2024 -0600

    CAMEL-17719: camel-salesforce: Add operation to get event schemas
    
    Event schemas are Avro schemas and support Platform Events,
    Change Data Capture events, and custom events.
---
 .../org/apache/camel/component/salesforce/RestApiIntegrationTest.java    | 1 -
 1 file changed, 1 deletion(-)

diff --git a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
index e8fa5e95704..a4b91c047a9 100644
--- a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
+++ b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/RestApiIntegrationTest.java
@@ -554,7 +554,6 @@ public class RestApiIntegrationTest extends AbstractSalesforceTestBase {
         final String schemaId = (String) map.get("uuid");
 
         final Object idResult = template.requestBodyAndHeader("salesforce:getEventSchema", "", EVENT_SCHEMA_ID, schemaId);
-        System.out.println(idResult);
         assertNotNull(idResult);
     }