Oisin Grehan
Oisin Grehan
This seems an odd usage pattern to me: ```csharp builder.AddProject("fulfillment") .WithReference(orders.AddConsumerGroup("fulfillment")); ``` Is there precedent? I would have expected: ```csharp var builder = DistributedApplication.Create(args); var ns = builder.AddAzureEventHubsNamespace("ns"); var orders...
@mitchdenny @davidfowl @eerhardt Is this the right approach for building this out? ```csharp namespace Aspire.Hosting.Azure; public class AzureEventHubResource(string name, AzureEventHubsResource eventHubsNamespace) : Resource(name), IResourceWithParent, IResourceWithConnectionString, IResourceWithAzureFunctionsConfig { public ReferenceExpression ConnectionStringExpression...
> > This seems an odd usage pattern to me: > > ```cs > > builder.AddProject("fulfillment") > > .WithReference(orders.AddConsumerGroup("fulfillment")); > > ``` > > > > > > > >...
Here's a workaround for anyone who finds this issue. This intercepts the JSON config builder for the emulator will allow you to change the partition count and/or consumer groups. Note...
> > This seems an odd usage pattern to me: > > builder.AddProject("fulfillment") > > .WithReference(orders.AddConsumerGroup("fulfillment")); > > > > `` > > `AddConsumerGroup` would be returning an `IResourceBuilder` which...
Can we add support for setting an `EntityPath` now in the connection string? e.g. `builder.AddAzureEventHubs("ns").WithHub("hub", configure => configure.IsDefaultEntity = true);` The builder should throw [on build?] if more than one...
> [@oising](https://github.com/oising) - can you open a new issue for that? I believe this issue is now completed with [#7005](https://github.com/dotnet/aspire/pull/7005). @eerhardt https://github.com/dotnet/aspire/issues/7093
Arse. And I thought this would be an easy fix.
> In my case, I found that creating an `Activity` before call to `PublishEventAsync()` stops Dapr traces. I'm starting an Activity using the following: > > using var activity =...
> As an aside, @jazzdelightsme: Your code seems to be handle SGR sequences only and uses a _single-character_ CSI representation (`U+009b`), whereas VT processing always requires a _two-character_ sequence, ``...