mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49: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 {
|
func New(config Config) Client {
|
||||||
|
|
||||||
httpClient := &http.Client{
|
httpClient := &http.Client{
|
||||||
Timeout: time.Second * 30,
|
Timeout: time.Second * 120,
|
||||||
}
|
}
|
||||||
|
|
||||||
c := &client{
|
c := &client{
|
||||||
|
|
|
@ -43,7 +43,7 @@ type client struct {
|
||||||
func New(config Config) Client {
|
func New(config Config) Client {
|
||||||
|
|
||||||
httpClient := &http.Client{
|
httpClient := &http.Client{
|
||||||
Timeout: time.Second * 30,
|
Timeout: time.Second * 120,
|
||||||
}
|
}
|
||||||
|
|
||||||
c := &client{
|
c := &client{
|
||||||
|
|
|
@ -45,7 +45,7 @@ type client struct {
|
||||||
func New(config Config) Client {
|
func New(config Config) Client {
|
||||||
|
|
||||||
httpClient := &http.Client{
|
httpClient := &http.Client{
|
||||||
Timeout: time.Second * 30,
|
Timeout: time.Second * 120,
|
||||||
}
|
}
|
||||||
|
|
||||||
c := &client{
|
c := &client{
|
||||||
|
|
|
@ -45,7 +45,7 @@ type client struct {
|
||||||
func New(config Config) Client {
|
func New(config Config) Client {
|
||||||
|
|
||||||
httpClient := &http.Client{
|
httpClient := &http.Client{
|
||||||
Timeout: time.Second * 30,
|
Timeout: time.Second * 120,
|
||||||
}
|
}
|
||||||
|
|
||||||
c := &client{
|
c := &client{
|
||||||
|
|
|
@ -42,7 +42,7 @@ type client struct {
|
||||||
func New(config Config) Client {
|
func New(config Config) Client {
|
||||||
|
|
||||||
httpClient := &http.Client{
|
httpClient := &http.Client{
|
||||||
Timeout: time.Second * 30,
|
Timeout: time.Second * 120,
|
||||||
}
|
}
|
||||||
|
|
||||||
c := &client{
|
c := &client{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue