Skip to content

Commit da1316d

Browse files
committed
fix go vet
1 parent 8306f34 commit da1316d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/server/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ func (s *ClickHouseJWEServer) handleExecuteQueryOpenAPI(w http.ResponseWriter, r
990990
return
991991
}
992992
if limit > s.Config.ClickHouse.Limit {
993-
http.Error(w, fmt.Sprintf("Limit cannot exceed %s", s.Config.ClickHouse.Limit), http.StatusBadRequest)
993+
http.Error(w, fmt.Sprintf("Limit cannot exceed %d", s.Config.ClickHouse.Limit), http.StatusBadRequest)
994994
return
995995
}
996996
}

0 commit comments

Comments
 (0)