diff options
Diffstat (limited to 'git-mirror-gitlab-ee')
-rwxr-xr-x | git-mirror-gitlab-ee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-mirror-gitlab-ee b/git-mirror-gitlab-ee index 80a6d37..aaca9b7 100755 --- a/git-mirror-gitlab-ee +++ b/git-mirror-gitlab-ee @@ -104,7 +104,7 @@ class GitLabEE < GitLabCE req.add_field("PRIVATE-TOKEN", self.config['apikey']) res = self.connection(req.uri).request(req) if res.code != "200" - raise Error.new(res) + raise Error.new([res, res.body]) end user = JSON::parse(res.body) return user["id"] |