Fix issue with missing `return` in blobBatch (#24573)

This commit is contained in:
Jeff Fisher 2023-01-26 18:34:16 -06:00 коммит произвёл GitHub
Родитель bbb29823c9
Коммит 65e8bb6db3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 18 добавлений и 14 удалений

Просмотреть файл

@ -184,20 +184,24 @@ export class BlobBatch {
options = {};
}
tracingClient.withSpan("BatchDeleteRequest-addSubRequest", options, async (updatedOptions) => {
this.setBatchType("delete");
await this.addSubRequestInternal(
{
url: url,
credential: credential,
},
async () => {
await new BlobClient(url, this.batchRequest.createPipeline(credential)).delete(
updatedOptions
);
}
);
});
return tracingClient.withSpan(
"BatchDeleteRequest-addSubRequest",
options,
async (updatedOptions) => {
this.setBatchType("delete");
await this.addSubRequestInternal(
{
url: url,
credential: credential,
},
async () => {
await new BlobClient(url, this.batchRequest.createPipeline(credential)).delete(
updatedOptions
);
}
);
}
);
}
/**