fix(core): update

This commit is contained in:
2021-12-20 16:33:13 +01:00
parent 52bad357fe
commit e44b7875e6
3 changed files with 15 additions and 3 deletions

View File

@@ -40,6 +40,16 @@ export class Smarts3 {
console.log('s3 server is running');
}
public async getLocalS3Descriptor(): Promise<plugins.smartbucket.ISmartBucketConfig> {
return {
accessKey: this.dataForClient.s3AccessKey,
accessSecret: this.dataForClient.s3AccessSecret,
endpoint: 'localhost',
port: this.dataForClient.port,
useSsl: this.dataForClient.useSsl,
}
}
public async stop() {
await this.s3Instance.close();
}