Merge branch 'stable-2.11' * stable-2.11: Include '/a' into HttpScheme URLs to trigger authentication Change-Id: I588d47262d67d6b86f430d4a1afcef41bc3ceb7a
diff --git a/src/main/java/com/googlesource/gerrit/plugins/download/scheme/HttpScheme.java b/src/main/java/com/googlesource/gerrit/plugins/download/scheme/HttpScheme.java index af75046..01b0293 100644 --- a/src/main/java/com/googlesource/gerrit/plugins/download/scheme/HttpScheme.java +++ b/src/main/java/com/googlesource/gerrit/plugins/download/scheme/HttpScheme.java
@@ -69,6 +69,7 @@ r.append("@"); r.append(host); r.append(base.substring(s)); + r.append("a/"); } else { return null; }