Per Gårdebrink

Results 10 comments of Per Gårdebrink

What configuration values is it dependant on? If using Inputs/Outputs is a problem because of configuration values, you could make a hash of all those values and write the hash...

> Hi, > What is the status of this issue ? > Is there a temporary solution ? > > Regards I think I fixed this in https://github.com/SpecFlowOSS/SpecFlow/pull/2094 but it...

Looking at the code in [OpenidConnectAuthenticationHandler.cs](https://github.com/aspnet/AspNetKatana/blob/d196e785e277452f1382dded08ca12974d29170e/src/Microsoft.Owin.Security.OpenIdConnect/OpenidConnectAuthenticationHandler.cs), wouldn't it just be possible to move this code: ``` if (Options.ProtocolValidator.RequireNonce) { AddNonceToMessage(openIdConnectMessage); } ``` To be inside the `if (!notification.HandledResponse)` block on...

I noticed the same behaviour and was curious why rules could be exported correctly with unix style path on windows while actions wouldn't (the rule json references the .js file...

Yes, we're currently on classic ASP.NET (in hopefully a not to distant future on ASP.NET Core though) but I guess it could happen in ASP.NET Core as well, but maybe...

> I think I'd either use `Task.Delay(x).GetAwaiter().GetResult()` or remove the delay between retries all together because of possibly too many side effects. Wouldn't that also block the current thread in...

> > I think I'd either use `Task.Delay(x).GetAwaiter().GetResult()` or remove the delay between retries all together because of possibly too many side effects. > > Wouldn't that also block the...

Sorry for not responding. I haven't really digged into the details on the logging setup in FluentMigrator yet and how it's supposed to work as I'm quite new to the...

Couldn't this be solved with static AsyncLocal storage instead of storing it on the HttpContext.Items? HttpContextAccessor uses AsyncLocal internally, so they would follow each other either way.

Thanks @tim-finnigan! I don't think fine grained permissions, like discussed in that issue, would be the same as I suggest here as fine grained permissions exists on top of access...