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
Describe the bug
After upgrade to 4.2.0 from older version (4.1.x) my Spring integration flows comined with SCF support was broken. I did all as described here, but with java.util.function.Consumer instead of java.util.function.Function. Now my function recognized as java.util.function.Consumer<Object> instead of java.util.function.Consumer<MyEvent>. Debugging made my way to org.springframework.cloud.function.context.catalog.FunctionTypeUtils#discoverFunctionType method. Some problem there.
Please try with the latest snapshot. There were major refactoring done on FunctionTypeUtils before 4.2 release but few issues were reported and fixed after.
Describe the bug
After upgrade to 4.2.0 from older version (4.1.x) my Spring integration flows comined with SCF support was broken. I did all as described here, but with
java.util.function.Consumer
instead ofjava.util.function.Function
. Now my function recognized asjava.util.function.Consumer<Object>
instead ofjava.util.function.Consumer<MyEvent>
. Debugging made my way toorg.springframework.cloud.function.context.catalog.FunctionTypeUtils#discoverFunctionType
method. Some problem there.Sample
The text was updated successfully, but these errors were encountered: