spring-cloud-function
spring-cloud-function copied to clipboard
The GCP adapter assumes there is a single object value for each message header key [in this code](https://github.com/spring-cloud/spring-cloud-function/blob/main/spring-cloud-function-adapters/spring-cloud-function-adapter-gcp/src/main/java/org/springframework/cloud/function/adapter/gcp/FunctionInvoker.java#L102-L104). When header value is a collection, this results in the header value...
Once https://github.com/spring-projects/spring-framework/issues/28210 adds TestSocketUtils we should remove the temporary ones recently added: - [ ] https://github.com/spring-cloud/spring-cloud-function/commit/1fb5af28a6d658ea214763f7a4029316644e241e#diff-22f02a66dd8b5e32b8fe149c40d0c139659f57b1fcb946386c94d8adcde1f613R30 - [ ] https://github.com/spring-cloud/spring-cloud-function/commit/1fb5af28a6d658ea214763f7a4029316644e241e#diff-d37cfba905a637b0311a0840e5dfb20585d453fe855beae5cdaf41fce978df5bR30
The project located at https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-samples/function-sample-azure is extremely helpful. Could I ask you to please add a sample on how to use an Azure function with TimerTrigger.
Tested with 2.1.0.RELEASE Simple test: ``` public class PingFunction implements Supplier { private static Log logger = LogFactory.getLog(PingFunction.class); @Override public String get() { logger.info("Function Called"); return "hello " + new...
I am trying to process messages as a batch with Azure Function SB Topic Trigger; but the flow fails with class cast exception. Unable to figure the root cause on...
I wasn't able to use HTTP GET to call a function, especially using the Supplier. It didn't seem to work. I was only able to get "functions" to work with...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] When looking at the...
1. The existing cloud event sample is neat, but there's no actual sign that it is using cloud events. We could fix that just by including the HTTP response in...
Currently we have `RoutingFunction` It would be nice to have a filtering function especially when encountering cases like [this](https://stackoverflow.com/questions/68986836/spring-kafka-filtering-kafkanull-values-from-payload)
The sample functions all have examples using Maven but not gradle. I tried to convert the pom.xml into a build.gradle file but was not able to achieve the same result....