Remove legacy unknwon/com
package (#19298)
Follows: #19284 * The `CopyDir` is only used inside test code * Rewrite `ToSnakeCase` with more test cases * The `RedisCacher` only put strings into cache, here we use internal `toStr` to replace the legacy `ToStr` * The `UniqueQueue` can use string as ID directly, no need to call `ToStr`
This commit is contained in:
parent
4c5cb1e2f2
commit
4f27c28947
17 changed files with 353 additions and 58 deletions
|
@ -6,6 +6,7 @@ package webhook
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
repo_model "code.gitea.io/gitea/models/repo"
|
||||
|
@ -106,7 +107,7 @@ func PrepareWebhook(w *webhook_model.Webhook, repo *repo_model.Repository, event
|
|||
return err
|
||||
}
|
||||
|
||||
go hookQueue.Add(repo.ID)
|
||||
go hookQueue.Add(strconv.FormatInt(repo.ID, 10))
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -187,7 +188,7 @@ func PrepareWebhooks(repo *repo_model.Repository, event webhook_model.HookEventT
|
|||
return err
|
||||
}
|
||||
|
||||
go hookQueue.Add(repo.ID)
|
||||
go hookQueue.Add(strconv.FormatInt(repo.ID, 10))
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -239,7 +240,7 @@ func ReplayHookTask(w *webhook_model.Webhook, uuid string) error {
|
|||
return err
|
||||
}
|
||||
|
||||
go hookQueue.Add(t.RepoID)
|
||||
go hookQueue.Add(strconv.FormatInt(t.RepoID, 10))
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue