flower7434
flower7434
I think the problem is in https://github.com/paolosalvatori/ServiceBusExplorer/blob/main/src/ServiceBusExplorer/Forms/MessageForm.cs#L418 The body is read as a Stream and that won't work if body type is String. `message.Clone(message.GetBody(), messagesSplitContainer.Visible);` Maybe it is enough to...
Changes to echo example for using TLS. Set TLS port (and use all interfaces if wanted). ` var addr = flag.String("addr", ":443", "https service address") ` Use wss. ` homeTemplate.Execute(w,...
This seems to have started in version **9.0.1048.9590**. The comment for the Failover Manager cache bug fix sounds suspicious. _**Fix**: Add cleanup logic that purges all stale entries keeping the...
So it seems like the last working version of Service Fabric in Azure is about to expire. No ideas on this? Before upgrade, after upgrade and after rollback. It breaks...
No time soon is my guess. Probably 0-6 months before .NET 6 will go out of support which is November 12, 2024. I would be surprised if it is available...
> Aspire looks great, but they left the deployment part of it to the developer, it's a local orchestrator for microservices (so far). It will surely be enhanced with Kubernetes...
You may encounter this error if an actor fails to start or is missing. Ensure that the NuGet packages and the .NET version are compatible with the installed SF version....
_"...and I have a scenario where I want at most one instance of my application running at any one time."_ You can never trust SF to have a single instance...
> Thanks, @mfmadsen and @FredrikDahlberg. Is there any way to guarantee essentially a singleton service in Service Fabric, e.g. never more than one instance? I believe we have some locks...
> You can NEVER guarantee a singleton service, and despite the documentation, you can't even be assured that an instance of an actor won't be running concurrently. If Service Fabric...