Skip to content

Commit de69d85

Browse files
committed
Small fix to the deploy time script
1 parent 7dc4db9 commit de69d85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

acm-deploy-load/analyze-acm-deploy-time.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def main():
149149
log_write(time_file, "Cluster Install Duration (Cluster Install Completed): {}s :: {}".format(cluster_install_duration, str(timedelta(seconds=cluster_install_duration))))
150150
log_write(time_file, "Deployment Complete Duration (DU Compliant): {}s :: {}".format(deployed_complete_duration, str(timedelta(seconds=deployed_complete_duration))))
151151
log_write(time_file, "Completed Duration (DU Timeout+Compliant): {}s :: {}".format(completed_duration, str(timedelta(seconds=completed_duration))))
152-
log_write(time_file, "Full Duration: {}, :: {}".format(full_duration, str(timedelta(seconds=full_duration))))
152+
log_write(time_file, "Full Duration: {}s :: {}".format(full_duration, str(timedelta(seconds=full_duration))))
153153
log_write(time_file, "################################################################")
154154
deployed_installed_time_diff = deployed_complete_duration - cluster_install_duration
155155
log_write(time_file, "Deployment Complete - Cluster Install Completed: {}s :: {}".format(deployed_installed_time_diff, str(timedelta(seconds=deployed_installed_time_diff))))

0 commit comments

Comments
 (0)