Robert Schmidt

Results 10 issues of Robert Schmidt

I've experienced thread starvation in these cases (using AsyncLazy to populate entries in MemoryCache). It's only an issue with factory methods which have a long CPU bound lead-in before their...

EditContext.OnFieldChanged is called when focus changes, but not when the inputs are toggled. This is problematic for an EditForm which relies on this callback to be informed when anything changes...

Trying to run "snyk test" on a ASP.NET Core solution with ~100 projects. It fails with the error message for ~20 projects, while the rest work well. The debug output...

Hi! I'm trying to add ArangoDB to my local cluster (Docker for Windows 2.0.1.0 Edge with Kubernetes 1.13.0) using the Helm charts: ``` $URLPREFIX="https://github.com/arangodb/kube-arangodb/releases/download/0.3.7" helm install $URLPREFIX/kube-arangodb-crd.tgz -n arango-crd helm...

` builder .AddKubeConfigMap(client, "config") .AddKubeConfigMap(client, "jaeger") ; ` This results in the following trace - i.e. only the last ConfigMap is read, and it is read twice. (It doesn't exist...

My Homey app stopped working because Panasonic seems to have started requiring 2FA. Just wanted to highlight this here as it will impact all consumers of this package.

Got something working for ASP.NET Core 3.x (see #25). I don't like the redirect. The browser's address bar shows the "internal" route, which is different from the original. Can anyone...

I was able to configure endpoints like this (instead of UseRouteAnalyzer()): ``` app.UseEndpoints(config => { config.MapControllers(); // Manually add RouteAnalyzer endpoints config.MapControllerRoute("routeAnalyzer", "{controller=RouteAnalyzer_Main}/{action=ShowAllRoutes}"); config.Map("/routes", context => { context.Response.Redirect("RouteAnalyzer_Main/ShowAllRoutes"); return Task.CompletedTask;...

The conflict detection is a great feature, no doubt - but cleaning up the conflicts can still be a drag. While I'm OK with "Show in folder", combined with having...

enhancement
help wanted

With a case like this: ```html ``` ... the innermost spliter-bar shows an "up-down" cursor instead of "left-right". I think something is wrong in SplitContainer.razor.css. If I add ">" like...