Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/bitbucket_server/connection.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/bitbucket_server/connection.rb b/lib/bitbucket_server/connection.rb
index 0b65203a824..13bbc240c99 100644
--- a/lib/bitbucket_server/connection.rb
+++ b/lib/bitbucket_server/connection.rb
@@ -27,9 +27,9 @@ module BitbucketServer
def post(path, body)
response = Gitlab::HTTP.post(build_url(path),
- basic_auth: auth,
- headers: post_headers,
- body: body)
+ basic_auth: auth,
+ headers: post_headers,
+ body: body)
check_errors!(response)
@@ -44,9 +44,9 @@ module BitbucketServer
url = delete_url(resource, path)
response = Gitlab::HTTP.delete(url,
- basic_auth: auth,
- headers: post_headers,
- body: body)
+ basic_auth: auth,
+ headers: post_headers,
+ body: body)
check_errors!(response)