-
- Downloads
Merge branch 'feat/retry-on-error' into 'main'
feat: retry on http error Closes #604 See merge request https://gitlab.com/gitlab-org/gitlab-shell/-/merge_requests/703 Merged-by:Ash McKenzie <amckenzie@gitlab.com> Approved-by:
Alejandro Rodríguez <alejandro@gitlab.com> Approved-by:
Ash McKenzie <amckenzie@gitlab.com> Reviewed-by:
Steve Azzopardi <sazzopardi@gitlab.com> Reviewed-by:
Ash McKenzie <amckenzie@gitlab.com> Co-authored-by:
Steve Azzopardi <sazzopardi@gitlab.com>
No related branches found
No related tags found
Showing
- .gitlab-ci.yml 7 additions, 0 deletions.gitlab-ci.yml
- client/client_test.go 52 additions, 3 deletionsclient/client_test.go
- client/gitlabnet.go 43 additions, 4 deletionsclient/gitlabnet.go
- client/httpclient.go 21 additions, 7 deletionsclient/httpclient.go
- client/httpclient_test.go 7 additions, 2 deletionsclient/httpclient_test.go
- client/testserver/testserver.go 29 additions, 0 deletionsclient/testserver/testserver.go
- go.mod 2 additions, 0 deletionsgo.mod
- go.sum 6 additions, 0 deletionsgo.sum
- internal/config/config.go 8 additions, 2 deletionsinternal/config/config.go
- internal/config/config_test.go 36 additions, 24 deletionsinternal/config/config_test.go
- spec/gitlab_shell_discover_spec.rb 6 additions, 1 deletionspec/gitlab_shell_discover_spec.rb
Loading
| Loading
| @@ -6,6 +6,7 @@ require ( |
github.com/golang-jwt/jwt/v4 v4.4.1 | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 | ||
github.com/hashicorp/go-retryablehttp v0.7.1 | ||
github.com/mattn/go-shellwords v1.0.11 | ||
github.com/mikesmitty/edkey v0.0.0-20170222072505-3356ea4e686a | ||
github.com/otiai10/copy v1.4.2 | ||
Loading
| Loading
| @@ -48,6 +49,7 @@ require ( |
github.com/google/pprof v0.0.0-20210804190019-f964ff605595 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/googleapis/gax-go/v2 v2.2.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/yamux v0.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
Loading
| Loading
|
Please register or sign in to comment