Change comment style

This commit is contained in:
RMidhunSuresh 2023-06-13 13:26:50 +05:30
parent c0e29fe21b
commit d5d3e76659

View File

@ -26,13 +26,14 @@ export class SecretFetcher {
public secretSharing: SecretSharing; public secretSharing: SecretSharing;
async getSecret(name: string): Promise<string | undefined> { async getSecret(name: string): Promise<string | undefined> {
;
return await this.secretStorage?.readSecret(name) ?? return await this.secretStorage?.readSecret(name) ??
await this.secretSharing?.getLocallyStoredSecret(name); await this.secretSharing?.getLocallyStoredSecret(name);
// note that we don't ask another device for secret here /**
// that should be done explicitly since it can take arbitrary * Note that we don't ask another device for secret here;
// amounts of time to be fulfilled as the other devices may * that should be done explicitly since it can take arbitrary
// be offline etc... * amounts of time to be fulfilled as the other devices may
* be offline etc...
*/
} }
setSecretStorage(storage: SecretStorage) { setSecretStorage(storage: SecretStorage) {