From 0b451ed62fc064d76e8a2d94e0be26da3414ce2d Mon Sep 17 00:00:00 2001 From: "SAITO-PC-3\\saito.k" Date: Wed, 27 Nov 2024 11:16:46 +0900 Subject: [PATCH] =?UTF-8?q?NotificationHub=E7=99=BB=E9=8C=B2=E6=96=B9?= =?UTF-8?q?=E6=B3=95=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/gateways/blobstorage/blobstorage.service.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dictation_server/src/gateways/blobstorage/blobstorage.service.ts b/dictation_server/src/gateways/blobstorage/blobstorage.service.ts index 65a71c6..7c2e450 100644 --- a/dictation_server/src/gateways/blobstorage/blobstorage.service.ts +++ b/dictation_server/src/gateways/blobstorage/blobstorage.service.ts @@ -523,13 +523,6 @@ export class BlobstorageService { // アカウントIDをもとにblobのリージョンマッピング用テーブルからストレージアカウントの情報を取得する const containerName = `account-${accountId}`; - if (accountId) { - const blobService = new BlobServiceClient( - '', - new StorageSharedKeyCredential('', ''), - ); - return blobService.getContainerClient(containerName); - } if (BLOB_STORAGE_REGION_US.includes(country)) { return this.blobServiceClientUS.getContainerClient(containerName);