This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 7b3917a typo 7b3917a is described below commit 7b3917a187e1e2642225e0ca1a333bd9c921e715 Author: Murilo Kakazu <yuri.kak...@gmail.com> AuthorDate: Thu Aug 15 09:29:25 2019 -0300 typo --- .../apache/camel/component/salesforce/AbstractSalesforceTestBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AbstractSalesforceTestBase.java b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AbstractSalesforceTestBase.java index 707da0c..930d350 100644 --- a/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AbstractSalesforceTestBase.java +++ b/components/camel-salesforce/camel-salesforce-component/src/test/java/org/apache/camel/component/salesforce/AbstractSalesforceTestBase.java @@ -50,7 +50,7 @@ public abstract class AbstractSalesforceTestBase extends CamelTestSupport { HashMap<String, Object> clientProperties = new HashMap<>(); clientProperties.put("timeout", "60000"); - clientProperties.put("maxRetreis", "3"); + clientProperties.put("maxRetries", "3"); // 4MB for RestApiIntegrationTest.testGetBlobField() clientProperties.put("maxContentLength", String.valueOf(4 * 1024 * 1024)); component.setHttpClientProperties(clientProperties);