Skip to content

Commit 48d1712

Browse files
authored
fix: update ExecAt precision to milliseconds (#348)
1 parent fad43bf commit 48d1712

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/internal/updateplatform/message_report.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,7 @@ func (m *UpdatePlatformManager) PostProcessEventMessage(body ProcessEvent) {
15321532
logger.Debug("post process event msg:", body)
15331533
body.TaskID = m.taskID
15341534
if body.ExecAt == 0 {
1535-
body.ExecAt = time.Now().Unix()
1535+
body.ExecAt = time.Now().UnixMilli()
15361536
}
15371537
if (m.config.PlatformDisabled & DisabledProcess) != 0 {
15381538
logger.Warning("platform is disabled")

0 commit comments

Comments
 (0)