Skip to content

Commit fa31ff2

Browse files
authored
fix: increase component download timeout to 5m (#1392)
1 parent 4c7adc6 commit fa31ff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lwcomponent/component.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ func (s State) Install(component *Component, version string) error {
257257
return err
258258
}
259259

260-
err = DownloadFile(path, artifact.URL, 0)
260+
err = DownloadFile(path, artifact.URL, 5*time.Minute)
261261
if err != nil {
262262
return errors.Wrap(err, "unable to download component artifact")
263263
}

0 commit comments

Comments
 (0)