diff options
author | Thong Kuah <tkuah@gitlab.com> | 2019-01-10 12:26:40 +1300 |
---|---|---|
committer | Thong Kuah <tkuah@gitlab.com> | 2019-01-25 16:48:37 +1300 |
commit | f234aef9943ec7ccd3e30e55d6cd0acd114e6c29 (patch) | |
tree | 5244711fc7893968465d2a703fd4b53503d78a9b /Gemfile | |
parent | e4dc22e330388df385b64815f12d7c51dd97635f (diff) | |
download | gitlab-ce-f234aef9943ec7ccd3e30e55d6cd0acd114e6c29.tar.gz |
Use http_max_redirects opt to replace monkeypatch
http_max_redirects was introduced in 4.2.2, so upgrade kubeclient.
The monkey-patch was global so we will have to check that all instances
of Kubeclient::Client are handled.
Spec all methods of KubeClient
This should provide better confidence that we are indeed disallowing
redirection in all cases
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -224,7 +224,7 @@ gem 'asana', '~> 0.8.1' gem 'ruby-fogbugz', '~> 0.2.1' # Kubernetes integration -gem 'kubeclient', '~> 4.0.0' +gem 'kubeclient', '~> 4.2.2' # Sanitize user input gem 'sanitize', '~> 4.6' |