summaryrefslogtreecommitdiffstats
path: root/configserver
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2022-10-28 14:26:27 +0200
committerHarald Musum <musum@yahooinc.com>2022-10-28 14:26:27 +0200
commit26eb6c17a2a253de73c181949627fdabb7b23061 (patch)
treeb10647efde52aa67e287ffd87a83fe8f814a3e9b /configserver
parent6beb3433c4598a9836e8ac3288f55d92097bd627 (diff)
Minor change to exception message
Diffstat (limited to 'configserver')
-rw-r--r--configserver/src/main/java/com/yahoo/vespa/config/server/session/SessionRepository.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/configserver/src/main/java/com/yahoo/vespa/config/server/session/SessionRepository.java b/configserver/src/main/java/com/yahoo/vespa/config/server/session/SessionRepository.java
index 49678c5e385..b36e8d2d37c 100644
--- a/configserver/src/main/java/com/yahoo/vespa/config/server/session/SessionRepository.java
+++ b/configserver/src/main/java/com/yahoo/vespa/config/server/session/SessionRepository.java
@@ -854,8 +854,8 @@ public class SessionRepository {
} catch (IOException | UncheckedIOException e) {
if (schemasDir.exists() && schemasDir.isDirectory())
throw new InvalidApplicationException(
- "Both " + ApplicationPackage.SCHEMAS_DIR.getRelative() + " and " + ApplicationPackage.SEARCH_DEFINITIONS_DIR +
- " exists in application package, please remove " + ApplicationPackage.SEARCH_DEFINITIONS_DIR, e);
+ "Both " + ApplicationPackage.SCHEMAS_DIR.getRelative() + "/ and " + ApplicationPackage.SEARCH_DEFINITIONS_DIR +
+ "/ exist in application package, please remove " + ApplicationPackage.SEARCH_DEFINITIONS_DIR + "/", e);
else
throw e;
}