Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance Error Message #224

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .connector-store/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"releases": [
{
"tagName": "v4.0.31",
"tagName": "v4.0.32",
"products": [
"EI 7.1.0",
"EI 6.6.0",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.wso2.carbon.esb.connector</groupId>
<artifactId>org.wso2.carbon.esb.connector.file</artifactId>
<version>4.0.31</version>
<version>4.0.32</version>
<packaging>jar</packaging>
<name>WSO2 Carbon - Connector For esb-connector-file</name>
<url>http://wso2.org</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@ private void setStreamToSynapse(FileObject file, String contentPropertyName, Mes
msgCtx.setEnvelope(TransportUtils.createSOAPEnvelope(documentElement));
}
} else {
log.error("FileConnector:read - selected builder for streaming should be DataSourceMessageBuilder. "
+ "Maybe it is not registered to the contentType of this message");
log.error("FileConnector:read - Failed to process document. There is no message builder class " +
"available of type DataSourceMessageBuilder that supports the contentType: " + contentType);
throw new FileOperationException("Required builder for streaming not found");
}
} catch (AxisFault e) {
Expand Down