You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Note: resourceToken doesn't necessarily mean that the TVM provided the credentials, it can have been provided by a user.
118
126
logger.debug('using azure cosmos resource token')
119
127
cosmosClient=newcosmos.CosmosClient({endpoint: credentials.endpoint,consistencyLevel: 'Session',tokenProvider: /* istanbul ignore next */async()=>credentials.resourceToken})
120
128
}else{
@@ -125,7 +133,7 @@ class CosmosStateStore extends StateStore {
test('successive calls should reuse the CosmosStateStore instance - with masterkey',async()=>{
184
+
// note this test may be confusing as no reuse is made with BYO credentials, but the cache is actually deleted by the top level init file. See test below.
0 commit comments