mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-03 21:07:36 +03:00
feat: use custom http client instead of default one
This commit is contained in:
parent
213f90d779
commit
4926480a7e
5 changed files with 32 additions and 6 deletions
9
main.go
9
main.go
|
@ -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"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue