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
:-Need(keyId.DontUseKeyId?, E("KeyID should not be supplied with a SingleKeyStore"));
177
178
var now := Time.GetCurrent();
178
-
var theMap :-getKeysCache(stdNames, keyLoc.keyId, cacheTTL as MP.PositiveLong, partitionIdBytes, logicalKeyStoreNameBytes, now as MP.PositiveLong);
179
+
var theMap :-getKeysCache(client, stdNames, keyLoc.keyId, cacheTTL as MP.PositiveLong, partitionIdBytes, logicalKeyStoreNameBytes, now as MP.PositiveLong);
179
180
returnSuccess(Keys(theMap));
180
181
} elseif keyLoc.LiteralLoc? {
181
182
:-Need(keyId.DontUseKeyId?, E("KeyID should not be supplied with a LiteralKeyStore"));
case DontUseKeyId =>returnFailure(E("KeyID must be supplied with a MultiKeyStore"));
187
188
case ShouldHaveKeyId =>returnSuccess(ShouldHaveKeys);
188
-
caseKeyId(id) =>var now := Time.GetCurrent(); var theMap :-getKeysCache(stdNames, id, cacheTTL as MP.PositiveLong, partitionIdBytes, logicalKeyStoreNameBytes, now as MP.PositiveLong); returnSuccess(Keys(theMap));
189
+
caseKeyId(id) =>var now := Time.GetCurrent(); var theMap :-getKeysCache(client, stdNames, id, cacheTTL as MP.PositiveLong, partitionIdBytes, logicalKeyStoreNameBytes, now as MP.PositiveLong); returnSuccess(Keys(theMap));
0 commit comments