Replies: 3 comments 2 replies
-
What version of aspire are you using? cc @danegsta |
Beta Was this translation helpful? Give feedback.
-
Are you also using I’m curious if there’s any indication of the migrations trying to run. |
Beta Was this translation helpful? Give feedback.
-
Not sure what happened—when I tried to reproduce it using the same source code (but different |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Wanted to share my experience. After I added
.WithEndpointProxySupport(false)
, things seemed to work at first, but then myPostgreSQL
started getting stuck—especially when I tried running EF Core migrations withTDbContext.Database.Migrate()
.I even tried setting a longer timeout with
TDbContext.Database.SetCommandTimeout(TimeSpan.FromSeconds(120))
, but no luck. As soon as I removed the.WithEndpointProxySupport(false)
option, everything went back to normal.Not sure what’s going on, but hope this is useful. Let me know if you need more info from my side. Thanks!
I also refer to this discussions
Beta Was this translation helpful? Give feedback.
All reactions