fix: Fix the wrong CS url for private repo limit check (#9865)

This commit is contained in:
Anagh Hegde 2021-12-20 15:16:57 +05:30 committed by GitHub
parent 99a12be018
commit 8a75928c2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -704,7 +704,7 @@ public class GitServiceCEImpl implements GitServiceCE {
}
// Call the cloud service API
return WebClient
.create(baseUrl + "api/v1/git/limit/" + key)
.create(baseUrl + "/api/v1/git/limit/" + key)
.get()
.exchange()
.flatMap(response -> {