Fix deploy data to be presented on dashboard (#15073)

* Fix deploy data to be presented on dashboard

* Bump sql-db-project extensions version

* Address comment
This commit is contained in:
Sakshi Sharma
2021-04-09 12:22:31 -07:00
committed by GitHub
parent e5a500d1a5
commit c58b7d35d7
2 changed files with 2 additions and 2 deletions

View File

@@ -319,7 +319,7 @@ export class ProjectsController {
telemetryProps.totalDuration = (actionEndTime - buildStartTime).toString();
const currentDeployIndex = this.deployInfo.findIndex(d => d.startDate === currentDeployTimeInfo);
this.deployInfo[currentDeployIndex].status = Status.success;
this.deployInfo[currentDeployIndex].status = result.success ? Status.success : Status.failed;
this.deployInfo[currentDeployIndex].timeToCompleteAction = utils.timeConversion(timeToDeploy);
TelemetryReporter.createActionEvent(TelemetryViews.ProjectController, TelemetryActions.publishProject)