mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user