OlujA
OlujA
CC#
Created by Salight on 2/25/2025 in #help
✅[Authorize] Doesn't Recognize Default Authentication Scheme?
can you add this?

services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
})

services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
})
4 replies
CC#
Created by OnlyOneUnlucky on 2/24/2025 in #help
Could someone please explain where these 3 integers come from in this problem? **NO SOLUTIONS PLS**
glad i read this before i hit enter :PepeLaugh:
12 replies
CC#
Created by OlujA on 11/22/2023 in #help
Too many requests on pool, website is crashing
Our dev team also manages db stuff(not maintenance tho, transactions and tables). I tried running some transaction and db response time was fine. Thanks for all of your advices mate! Even word 'hanging' and check for db connections helped me a lot. Have a great day!
11 replies
CC#
Created by OlujA on 11/22/2023 in #help
Too many requests on pool, website is crashing
They(3) all hang at the same time, but their response time is not the same. For example; All go down at 18:00 First Website(most populated one): Responds to my constant page refreshes after 10 minutes Second Website: After 7 minutes Third Website(next to no users): Responds after 6 minutes And they are gone once again and so on, we call our devops staff, they stop all websites from running. We wait for all requests on the pool to die, then restart the websites. And voila, requests are coming and going instantly, response times are normal etc etc. So i found a lot of un-disposed database connections today and most of them are frequently used. I'll try to optimize the code more with unnecesarry callings and usings.
11 replies
CC#
Created by OlujA on 11/22/2023 in #help
Too many requests on pool, website is crashing
No description
11 replies