Skip to content

Commit 16e338e

Browse files
Use a reasonable retry interval for In-Memory SQL. (#117)
1 parent 0b93b03 commit 16e338e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/SqlSessionStateProviderAsync/SqlInMemoryTableSessionStateRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Microsoft.AspNet.SessionState
1717
class SqlInMemoryTableSessionStateRepository : ISqlSessionStateRepository
1818
{
1919
private const int DEFAULT_RETRY_NUM = 10;
20-
private const int DEFAULT_RETRY_INERVAL = 1;
20+
private const int DEFAULT_RETRY_INERVAL = 200;
2121
private readonly string SessionTableName = "ASPNetSessionState_InMem";
2222

2323
private int _retryIntervalMilSec;

0 commit comments

Comments
 (0)