@@ -47,10 +47,10 @@ public class CosmosDBSessionStateProviderAsync : SessionStateStoreProviderAsyncB
47
47
48
48
#region CosmosDB Stored Procedures
49
49
private static readonly string CreateSessionStateItemSPID = "CreateSessionStateItem" ;
50
- private static readonly string GetStateItemSPID = "GetStateItem " ;
50
+ private static readonly string GetStateItemSPID = "GetStateItem2 " ;
51
51
private static readonly string GetStateItemExclusiveSPID = "GetStateItemExclusive" ;
52
52
private static readonly string ReleaseItemExclusiveSPID = "ReleaseItemExclusive" ;
53
- private static readonly string RemoveStateItemSPID = "RemoveStateItem " ;
53
+ private static readonly string RemoveStateItemSPID = "RemoveStateItem2 " ;
54
54
private static readonly string ResetItemTimeoutSPID = "ResetItemTimeout" ;
55
55
private static readonly string UpdateSessionStateItemSPID = "UpdateSessionStateItem" ;
56
56
@@ -84,7 +84,7 @@ function CreateSessionStateItem(sessionId, timeout, lockCookie, sessionItem, uni
84
84
85
85
86
86
private static readonly string GetStateItemSP = @"
87
- function GetStateItem (sessionId) {
87
+ function GetStateItem2 (sessionId) {
88
88
var collection = getContext().getCollection();
89
89
var collectionLink = collection.getSelfLink();
90
90
var response = getContext().getResponse();
@@ -299,7 +299,7 @@ function TryReleaseItemExclusive(continuation) {
299
299
}" ;
300
300
301
301
private static readonly string RemoveStateItemSP = @"
302
- function RemoveStateItem (sessionId, lockCookie) {
302
+ function RemoveStateItem2 (sessionId, lockCookie) {
303
303
var collection = getContext().getCollection();
304
304
var collectionLink = collection.getSelfLink();
305
305
var response = getContext().getResponse();
0 commit comments