aboutsummaryrefslogtreecommitdiffstats
path: root/modules/indexer
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2021-10-18 03:47:12 +0800
committerGitHub <noreply@github.com>2021-10-17 20:47:12 +0100
commit4a57c9ea17a86e579751025cd0a7c2e6de374726 (patch)
treed9de60079592c541c9e6f2a983ec754199739a2f /modules/indexer
parent5326f4c9c59cce8a1d8f78afd486ebb8688b45ab (diff)
downloadgitea-4a57c9ea17a86e579751025cd0a7c2e6de374726.tar.gz
gitea-4a57c9ea17a86e579751025cd0a7c2e6de374726.zip
Fix some lints (#17337)
Fix some linting problems.
Diffstat (limited to 'modules/indexer')
-rw-r--r--modules/indexer/stats/queue.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/indexer/stats/queue.go b/modules/indexer/stats/queue.go
index 8309cfcd3b..fde3f2ff01 100644
--- a/modules/indexer/stats/queue.go
+++ b/modules/indexer/stats/queue.go
@@ -27,7 +27,7 @@ func handle(data ...queue.Data) {
}
func initStatsQueue() error {
- statsQueue = queue.CreateUniqueQueue("repo_stats_update", handle, int64(0)).(queue.UniqueQueue)
+ statsQueue = queue.CreateUniqueQueue("repo_stats_update", handle, int64(0))
if statsQueue == nil {
return fmt.Errorf("Unable to create repo_stats_update Queue")
}