Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,9 @@ private Map<byte[], byte[]> map(SinkRecord sinkRecord) {
}
return body;
}
if (value == null) {
return Collections.emptyMap();
}
throw new ConnectException("Unsupported source value type: " + sinkRecord.valueSchema().type().name());
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ org.gradle.daemon = false
org.gradle.caching = false
org.gradle.parallel = false
systemProp.file.encoding = utf-8
org.gradle.jvmargs = -Dfile.encoding=UTF-8
org.gradle.jvmargs = -Dfile.encoding=UTF-8