feat: use custom http client instead of default one

This commit is contained in:
rramiachraf 2023-03-12 13:29:33 +01:00
parent 213f90d779
commit 4926480a7e
5 changed files with 32 additions and 6 deletions

View file

@ -14,8 +14,13 @@ import (
)
var logger = logrus.New()
var client = &http.Client{}
func main() {
client = &http.Client{
Timeout: 20 * time.Second,
}
c, err := bigcache.NewBigCache(bigcache.DefaultConfig(time.Hour * 24))
if err != nil {
logger.Fatalln("can't initialize caching")
@ -42,8 +47,8 @@ func main() {
server := &http.Server{
Handler: r,
WriteTimeout: 10 * time.Second,
ReadTimeout: 10 * time.Second,
WriteTimeout: 25 * time.Second,
ReadTimeout: 25 * time.Second,
}
port, _ := strconv.Atoi(os.Getenv("PORT"))