diff --git a/platform/features/conductor-v2/src/TimeConductorController.js b/platform/features/conductor-v2/src/TimeConductorController.js index cdbc00ebd4a..01db98ef6c7 100644 --- a/platform/features/conductor-v2/src/TimeConductorController.js +++ b/platform/features/conductor-v2/src/TimeConductorController.js @@ -27,7 +27,7 @@ define( var SIX_HOURS = 6 * 60 * 60 * 1000; function TimeConductorController($scope, $timeout, conductor) { - var now = Date.now(); + var now = Math.ceil(Date.now() / 1000) * 1000; var self = this; this.$scope = $scope;