I have an ASP.NET web application that periodically returns the following, annoying error:
Timed out. Waiting period before receiving connection to the pool. Perhaps this happened because all pooled connections were used and the maximum pool size was reached.
My manager suspects that this is due SqlConnectionto the application being unclosed . Therefore, I am currently manually checking each code file in the application to see if any connections have been opened.
Is there a faster solution to finding the root of this error?
source
share