File size: 637 Bytes
d61821a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | diff --git a/commands/helpers/artifacts_uploader.go b/commands/helpers/artifacts_uploader.go
index 73e5c1c7..3fba19cf 100644
--- a/commands/helpers/artifacts_uploader.go
+++ b/commands/helpers/artifacts_uploader.go
@@ -55,7 +55,9 @@ type ArtifactsUploaderCommand struct {
func NewArtifactsUploaderCommand() cli.Command {
cmd := &ArtifactsUploaderCommand{
- Name: "artifacts",
+ Name: "artifacts",
+ Timeout: common.DefaultArtifactUploadTimeout,
+ ResponseHeaderTimeout: common.DefaultArtifactResponseHeaderTimeout,
}
cmd.newNetwork = func() common.Network {
return network.NewGitLabClient(
|