halspang

Results 146 comments of halspang

@mandarsj - Thanks for opening this issue. Do you have something like this in your startup code? ```csharp public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { app.UseCloudEvents(); app.UseEndpoints(endpoints => { endpoints.MapSubscribeHandler();...

@mandarsj - Do you still need help?

@akkie/@fabistb - What are your use cases for this API? Technically, this is an API that Dapr calls into your application, so it isn't something that we would put in...

Is this something you could tune with the existing actor configuration? You can set the `actorIdleTimeout` to be arbitrarily low. It won't deactivate the actor while it is running but...

Yeah, that is the problem with the actor configuration. Though potentially that's a feature to look into for core Dapr? The ability to tie the configurations to specific types? As...

@yaron2 - That's the runtime calling your application, not the other way around. Dapr does not expose that endpoint in the runtime. https://github.com/dapr/dapr/blob/a02eb997c6399939148aa483c644613dcacc3056/pkg/http/api.go#L272 If we want something like the `ActorProxy`...

@saber-wang - Thanks for opening this issue! Are you just asking for additional properties to passed through to the subscription endpoint? Is this as opposed to providing them in the...

@saber-wang - Circling back to this, if the raw cloud events doesn't work, I think it would be due to the runtime not actually passing the extra attributes through. If...

This will be added to whatever milestone we happen to be in when the change goes into the runtime.

@tillig - Thanks for this issue! However, this is technically a binary breaking change. I'm going to start making a v2.0 milestone for this SDK. Once we reach a critical...