We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dc6630 commit 311ba46Copy full SHA for 311ba46
src/main/java/com/arangodb/internal/InternalArangoDB.java
@@ -75,7 +75,7 @@ protected static void loadHosts(final Properties properties, final Collection<Ho
75
final String[] split = host.split(":");
76
if (split.length != 2 || !split[1].matches("[0-9]+")) {
77
throw new ArangoDBException(String.format(
78
- "Could not load property-value arangodb.hosts=%s. Expected format host:ip,host:ip,...",
+ "Could not load property-value arangodb.hosts=%s. Expected format ip:port,ip:port,...",
79
hostsProp));
80
} else {
81
hosts.add(new Host(split[0], Integer.valueOf(split[1])));
0 commit comments