-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependencies and workaround dotnet/sdk#2976 #7844
Conversation
|
@pranavkm handing the mic to you. Can you update this repo to react to dotnet/extensions#1118? |
/azp run AspNetCore-ci |
Azure Pipelines successfully started running 1 pipeline(s). |
Back to
Could "Make ILoggerFactory a scoped service" dotnet/efcore#14706 have caused the disposal? /cc @ajcvickers e.g. - { typeof(ILoggerFactory), new ServiceCharacteristics(ServiceLifetime.Singleton) },
+ { typeof(ILoggerFactory), new ServiceCharacteristics(ServiceLifetime.Scoped) }, Or perhaps - services.AddSingleton(loggerFactory);
+ services.AddScoped<ILoggerFactory>(_ => new ExternalLoggerFactory(loggerFactory)); Perhaps is causing both |
Most of the 368 failed tests tests are under Couple in |
In have a PR out to fix EF: dotnet/efcore#14783 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once we have the newer EF Core and the builds turn green
eng/Version.Details.xml
Outdated
</Dependency> | ||
<Dependency Name="Microsoft.AspNetCore.Testing" Version="3.0.0-preview3.19115.4"> | ||
<Dependency Name="Microsoft.AspNetCore.Testing" Version="3.0.0-preview3.19120.1"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strange that this update doesn't cause restore failures (version downgrade errors) -- as is happening in AspNetCore-Tooling. Recent versions of this package depend on newer Xunit versions than in this repo. 2.4.0
is the magic number.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This repo is already using xunit 2.4.0. I think aspnetcore-tooling was the only one still on 2.3
Pushed a change to react to dotnet/razor#240, dotnet/efcore#14790, and dotnet/extensions#1159 |
54c22ea
to
35ccb50
Compare
Not sure it has the new EF stuff yet?
|
@benaadams no it doesn't. @natemcmaster could you rerun your tool please? |
Updated with latest EFCore. 🤞 |
MVC using its own obsolete method?
|
@ryanbrandenburg can you update AspNetCore to react to change you made in Extensions? |
Restart Build Linux x64; was a docker registry timeout
|
macOs failure
|
Getting closer. The ILoggerFactory test failures and compiler errors are gone. Next failure:
|
@natemcmaster @Tratcher @rynowak I don't have time to investigate right now, but ping me if the |
There's a more than good chance the failure is due to EFCore. The health checks stuff hasn't changed recently. I'll take a look at the test to see if the test makes bad assumptions about EFCore and service scopes. |
@ajcvickers it looks like the in-memory database used in this test returns different results. Before EFCore update: After EFCore update: |
@ajcvickers @rynowak - workaround for changes in EF in-memory database behavior: |
Looks fine, a comment would make it mo better. |
@natemcmaster @rynowak Thanks Nate. Here's what's happening. When an in-memory database with a specific name is used, that database is under normal circumstances supposed to be the same database later if the same name is used. However, in reality the named database is rooted by default in EF's internal service provider. So the above behavior holds true as long as the same internal service provider is used by EF, which for a given EF configuration should be true. So this behavior that is now being seen in these tests--when a database called "Test" is used it is shared by all tests that create a database with that name. This is as things are supposed to be, and is one of the things that the EF breaking change makes "better". (The reason for this is that previously anytime a new ILoggerFactory was used with each DbContext instance, it caused EF to build a new internal service provider for that DbContext instance. (This is easy to hit in ASP.NET tests that often create a new ILoggerFactory for each test.) This no longer happens, so all the tests use the same EF internal service provider, which means they get to share the in-memory database.) In this case, the tests were dependent on the old behavior. So this is a case where the breaking change really broke things, but in an expected way, and with ultimately better, more consistent behavior. Still we should make sure it's documented. /cc @divega |
Opened manually using our script that finds coherent dependencies