Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
fix: Remove await statement from Promise.all (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarlow12 authored Jul 9, 2019
1 parent ae9a357 commit c51a865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/functionAppService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class FunctionAppService extends BaseService {

const functionZipFile = this.getFunctionZipFile();
const uploadFunctionApp = this.uploadZippedArfifactToFunctionApp(functionApp, functionZipFile);
const uploadBlobStorage = await this.uploadZippedArtifactToBlobStorage(functionZipFile);
const uploadBlobStorage = this.uploadZippedArtifactToBlobStorage(functionZipFile);
await Promise.all([uploadFunctionApp, uploadBlobStorage]);
}

Expand Down

0 comments on commit c51a865

Please sign in to comment.