优化调整单次任务的执行

This commit is contained in:
Yun
2025-08-28 17:45:17 +08:00
parent 503cabdcbf
commit c351cb084f
5 changed files with 47 additions and 16 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ func PriorityByVersion(version string) (priority int64, err error) {
if val == "" {
return 0, ErrVersionFormat
}
i, err := strconv.ParseInt(val, 10, 32)
i, err := strconv.ParseInt(val, 10, 64)
if err != nil {
return 0, ErrVersionFormat
}