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
Right now, we don't authentication the between Dapr sidecar and the application itself
Look at it:
// Dapr pubsubapp.MapPost("/CustomerCreated",(CustomerCreatedIntegrationEvent@event)=>{Console.WriteLine($"I received the message with name={@event.GetType().FullName}");returnOk("Subscribed");}).WithTopic("pubsub","CustomerCreatedIntegrationEvent");// Dapr cron job bindingapp.MapPost("/ProductOutboxCron",async(ITxOutboxProcessoroutboxProcessor)=>awaitoutboxProcessor.HandleAsync(typeof(CoolStore.IntegrationEvents.Anchor)));
The text was updated successfully, but these errors were encountered:
Right now, we don't authentication the between Dapr sidecar and the application itself
Look at it:
The text was updated successfully, but these errors were encountered: