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
{{ message }}
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
The Storage Service maintains references to a set of Lease Managers (see #4) and provides an interface to retrieve secrets from them.
An instance of the StorageService class has the following methods:
lookup(secret, callback)
Called to retrieve a secret.
The secret argument is a string identifying the secret.
The callback argument is a callback function invoked with two arguments: (error, result). If the call to the Lease Manager to retrieve the secret fails, the error argument will be populated. If the call to the Lease Manager to retrieve the secret succeeds, the result argument will be populated.
Issues related to this project are filed under the "storage-service" milestone.
The text was updated successfully, but these errors were encountered:
The Storage Service maintains references to a set of Lease Managers (see #4) and provides an interface to retrieve secrets from them.
An instance of the
StorageService
class has the following methods:lookup(secret, callback)
Called to retrieve a secret.
The
secret
argument is a string identifying the secret.The
callback
argument is a callback function invoked with two arguments:(error, result)
. If the call to the Lease Manager to retrieve the secret fails, theerror
argument will be populated. If the call to the Lease Manager to retrieve the secret succeeds, theresult
argument will be populated.Issues related to this project are filed under the "storage-service" milestone.
The text was updated successfully, but these errors were encountered: