mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Ensure http client has no timeout (#33856)
This commit is contained in:
parent
677b73dda5
commit
5c13820bba
@ -59,7 +59,7 @@ func (e *BadRequestError) Error() string {
|
||||
func New(skipTLSVerify bool, grafanaVersion string, logger plugins.PluginInstallerLogger) *Installer {
|
||||
return &Installer{
|
||||
httpClient: makeHttpClient(skipTLSVerify, 10*time.Second),
|
||||
httpClientNoTimeout: makeHttpClient(skipTLSVerify, 10*time.Second),
|
||||
httpClientNoTimeout: makeHttpClient(skipTLSVerify, 0),
|
||||
log: logger,
|
||||
grafanaVersion: grafanaVersion,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user