There was an error while loading. Please reload this page.
1 parent ee783c8 commit fd998adCopy full SHA for fd998ad
provider/aliyunProvider.js
@@ -203,8 +203,7 @@ class AliyunProvider {
203
}
204
205
getLogProjectName() {
206
- const service = this.serverless.service.service;
207
- return `sls-${this.key.aliyun_account_id}-logs`.replace(/_/g, '-');
+ return `sls-${this.key.aliyun_account_id}-${this.options.region}-logs`.replace(/_/g, '-');
208
209
210
getLogStoreName() {
@@ -213,7 +212,7 @@ class AliyunProvider {
213
212
214
215
getDeploymentBucketName() {
216
- return `sls-${this.key.aliyun_account_id}`;
+ return `sls-${this.key.aliyun_account_id}-${this.options.region}`;
217
218
219
// If a function is going to be reused by multiple endpoints,
0 commit comments