Chris Gillum
Chris Gillum
**Is your feature request related to a problem? Please describe.** I'm working with Kubernetes deployments where apps and components written in different languages share common connection strings. One of the...
Comment from this blog post: https://blogs.msdn.microsoft.com/appserviceteam/2016/07/05/creating-a-corporate-wiki-in-azure/ > To use the latest version of mediawiki you need to use the latest version of Auth_remoteuser (2.0.0) which was released a month ago...
## Summary As part of BYOB, I would like to be able to create a trigger binding that extends the HTTP trigger binding. These custom bindings would be triggered by...
According to [the `dapr run` documentation](https://docs.dapr.io/reference/cli/dapr-run/), the default value for `--dapr-grpc-port` is `50001`.  ## Expected Behavior When invoking `dapr run` without specifying `--dapr-grpc-port` would cause it to listen on...
## Background The Dapr SDK allows invoking service methods using an `HttpRequestMessage` parameter. However, this overload requires a fully qualified URL to the Dapr sidecar. Otherwise, an `InvalidOperationException` is thrown....
Consider the following code snippet: ```csharp ActorId actorId = new("123"); IMyActor proxy = ActorProxy.Create(actorId, nameof(MyActor)); // The Init method invokes the actor directly, which then decides whether to apply de-dupe...
The Durable commands currently only work with the Azure Storage backend, and not when users configure alternate backends, like MSSQL or Netherite. This PR adds detection for those other backend...
Relevant K8s documentation: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ Let's add k8s resource demands to the containers yaml we generate for function apps. For example, we might require that each function app container is guaranteed...
### Summary The Java language worker should support a custom middleware feature that enables the following: - Ability to inspect and change trigger input type and value - Ability to...
It's not possible to distinguish between a key not being found and an arbitrary error related to state lookups for actors. For example, the following code returns an error: ```go...