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:
makabe.t 2023-10-02 08:11:36 +00:00
parent 3e0c483b57
commit 65f80b9a5b

View File

@ -51,14 +51,9 @@ export class BlobstorageService {
this.configService.get('STORAGE_ACCOUNT_ENDPOINT_EU'),
this.sharedKeyCredentialEU,
);
const expireTime = Number(
this.sasTokenExpireHour = Number(
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;
}
/**