mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
feat(downloadclients): arrs increase timeout for release/push (#1083)
* fix(sonarr): increase timeout to 120s * feat(arrs): increase timeouts
This commit is contained in:
parent
1a48316233
commit
08d7ecf329
5 changed files with 5 additions and 5 deletions
|
@ -44,7 +44,7 @@ type client struct {
|
|||
func New(config Config) Client {
|
||||
|
||||
httpClient := &http.Client{
|
||||
Timeout: time.Second * 30,
|
||||
Timeout: time.Second * 120,
|
||||
}
|
||||
|
||||
c := &client{
|
||||
|
|
|
@ -43,7 +43,7 @@ type client struct {
|
|||
func New(config Config) Client {
|
||||
|
||||
httpClient := &http.Client{
|
||||
Timeout: time.Second * 30,
|
||||
Timeout: time.Second * 120,
|
||||
}
|
||||
|
||||
c := &client{
|
||||
|
|
|
@ -45,7 +45,7 @@ type client struct {
|
|||
func New(config Config) Client {
|
||||
|
||||
httpClient := &http.Client{
|
||||
Timeout: time.Second * 30,
|
||||
Timeout: time.Second * 120,
|
||||
}
|
||||
|
||||
c := &client{
|
||||
|
|
|
@ -45,7 +45,7 @@ type client struct {
|
|||
func New(config Config) Client {
|
||||
|
||||
httpClient := &http.Client{
|
||||
Timeout: time.Second * 30,
|
||||
Timeout: time.Second * 120,
|
||||
}
|
||||
|
||||
c := &client{
|
||||
|
|
|
@ -42,7 +42,7 @@ type client struct {
|
|||
func New(config Config) Client {
|
||||
|
||||
httpClient := &http.Client{
|
||||
Timeout: time.Second * 30,
|
||||
Timeout: time.Second * 120,
|
||||
}
|
||||
|
||||
c := &client{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue