azure-functions-extension icon indicating copy to clipboard operation
azure-functions-extension copied to clipboard

Extension for interacting with Dapr APIs from an Azure Function

Results 27 azure-functions-extension issues
Sort by recently updated
recently updated
newest added

Currently, to save an object to the state store, it looks like the following is supported: ``` [FunctionName(Constants.CreateNewOrder)] public void Run( [DaprServiceInvocationTrigger] OrderItem orderItem, [DaprState("%StateStoreName%", Key = "{orderItem.id}")] out OrderItem...

bug

Integration tests will cover the functionality of dapr extension from functions.

When deploying the sidecar to K8s during initiatlization it tries to connect to port 3001 even if you aren't using the trigger. So I had a function with a dapr...

kind/documentation

Java uses an attribute model similar to .NET, but the library is created here: https://github.com/azure/azure-functions-java-library There isn't a great way using that library to do a flexible custom trigger /...

P1

Consider using gRPC and not Http for making calls into dapr.

P2

To avoid external dependencies like Newtonsoft, use System.Text.Json

P2

Bumps [undici](https://github.com/nodejs/undici) from 5.28.3 to 5.28.4. Release notes Sourced from undici's releases. v5.28.4 :warning: Security Release :warning: Fixes https://github.com/nodejs/undici/security/advisories/GHSA-m4v8-wqvr-p9f7 CVE-2024-30260 Fixes https://github.com/nodejs/undici/security/advisories/GHSA-9qxr-qj54-h672 CVE-2024-30261 Full Changelog: https://github.com/nodejs/undici/compare/v5.28.3...v5.28.4 Commits fb98306 Bumped v5.28.4...

dependencies

Addin tests for retry with AFDE triggers 1. DaprTopicTrigger 2. DaprBindingTrigger 3. DaprServiceInvocationTrigger

I am experimenting with an odd scenario. Basically I want to subscribe to a Dapr Topic from a Go function inside Azure Functions. For the Go function, I was able...

I have been developing azure function (tried both isolated and in process model) which utilizes the Dapr trigger binding, set to connect to Azure Service Bus. Azure function is supposed...