Merged PR 459: パイプラインテストエラー修正
## 概要 [Task2773: パイプラインテストエラー修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2773) - パイプラインでのテストエラー対応のため環境変数のチェックを外しました。 ## レビューポイント - 共有 ## UIの変更 - なし ## 動作確認状況 - ローカルで確認
This commit is contained in:
parent
3e0c483b57
commit
65f80b9a5b
@ -51,14 +51,9 @@ export class BlobstorageService {
|
|||||||
this.configService.get('STORAGE_ACCOUNT_ENDPOINT_EU'),
|
this.configService.get('STORAGE_ACCOUNT_ENDPOINT_EU'),
|
||||||
this.sharedKeyCredentialEU,
|
this.sharedKeyCredentialEU,
|
||||||
);
|
);
|
||||||
|
this.sasTokenExpireHour = Number(
|
||||||
const expireTime = Number(
|
|
||||||
this.configService.get('STORAGE_TOKEN_EXPIRE_TIME'),
|
this.configService.get('STORAGE_TOKEN_EXPIRE_TIME'),
|
||||||
);
|
);
|
||||||
if (Number.isNaN(expireTime)) {
|
|
||||||
throw new Error(`STORAGE_TOKEN_EXPIRE_TIME is invalid value NaN`);
|
|
||||||
}
|
|
||||||
this.sasTokenExpireHour = expireTime;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user