You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/BeanFactoryAwareFunctionRegistry.java
Copy file name to clipboardExpand all lines: spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/FunctionTypeUtils.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,15 @@ public static boolean isTypeCollection(Type type) {
Copy file name to clipboardExpand all lines: spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/config/SmartCompositeMessageConverter.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ public Object fromMessage(Message<?> message, Class<?> targetClass, @Nullable Ob
89
89
for (Objectitem : iterablePayload) {
90
90
booleanisConverted = false;
91
91
if (item.getClass().getName().startsWith("org.springframework.kafka.support.KafkaNull")) {
92
-
resultList.add(item);
92
+
resultList.add(null);
93
93
isConverted = true;
94
94
}
95
95
for (Iterator<MessageConverter> iterator = getConverters().iterator(); iterator.hasNext() && !isConverted;) {
Copy file name to clipboardExpand all lines: spring-cloud-function-context/src/test/java/org/springframework/cloud/function/context/catalog/BeanFactoryAwareFunctionRegistryTests.java
0 commit comments