This is an automated email from the ASF dual-hosted git repository.
acosentino 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 bf97008 Camel-Salesforce: Fixed after upgrade of Jetty. Thanks Jetty,
for changing method signature in a minor release
bf97008 is described below
commit bf970081c2ffa04e35ca6426ae92980abbe29da5
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri Mar 29 11:20:16 2019 +0100
Camel-Salesforce: Fixed after upgrade of Jetty. Thanks Jetty, for changing
method signature in a minor release
---
.../component/salesforce/internal/client/SalesforceHttpRequest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceHttpRequest.java
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceHttpRequest.java
index 2728525..4802a69 100644
---
a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceHttpRequest.java
+++
b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/client/SalesforceHttpRequest.java
@@ -32,7 +32,7 @@ public class SalesforceHttpRequest extends HttpRequest {
}
@Override
- protected HttpConversation getConversation() {
+ public HttpConversation getConversation() {
return super.getConversation();
}
}