aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2023-01-27 10:53:10 +0100
committerjonmv <venstad@gmail.com>2023-01-27 10:53:10 +0100
commitdc4e5e85caef5d5279649359a16310e825540486 (patch)
treeaf6be40696da659e6e5b991140d6ea1a6d24a582 /vespajlib
parent78a42e1cf9735f58e7f204f34e0cb2bd7c1a3674 (diff)
Move container status.html check as well
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/ai/vespa/http/HttpURL.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespajlib/src/main/java/ai/vespa/http/HttpURL.java b/vespajlib/src/main/java/ai/vespa/http/HttpURL.java
index 9641ea2a8fd..ba1a8e08740 100644
--- a/vespajlib/src/main/java/ai/vespa/http/HttpURL.java
+++ b/vespajlib/src/main/java/ai/vespa/http/HttpURL.java
@@ -239,7 +239,7 @@ public class HttpURL {
return parse(raw, HttpURL::requirePathSegment);
}
- /** Parses the given raw, normalized path string; this ignores whether the path is absolute or relative.) */
+ /** Parses the given raw, normalized path string; this ignores whether the path is absolute or relative. */
public static Path parse(String raw, Consumer<String> validator) {
Path path = new Path(null, 0, raw.endsWith("/"), segmentValidator(validator));
if (raw.startsWith("/")) raw = raw.substring(1);