14 - fix creationConnection with tcp://host:port failing

This commit is contained in:
2016-12-06 18:54:04 -08:00
parent 52dee3584e
commit 3acfaafb2a
2 changed files with 6 additions and 1 deletions

View File

@ -56,7 +56,7 @@ function createFromTcpEndpoint(settings, tcpEndpoint, connectionName) {
}
function createFromStringEndpoint(settings, endPoint, connectionName) {
var m = endPoint.match(/^(tcp|discover):\/\/([^:]):?(\d+)?$/);
var m = endPoint.match(/^(tcp|discover):\/\/([^:]+):?(\d+)?$/);
if (!m) throw new Error('endPoint string must be tcp://hostname[:port] or discover://dns[:port]');
var scheme = m[1];
var hostname = m[2];