From 0b537fe1631df1c00ed781f0c8c9650bcdc2b6b6 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 3 Dec 2020 22:27:59 -0800 Subject: [PATCH] error text: port is in use and not reserved --- src/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps.js b/src/apps.js index d4d2dacce..bdf1c676a 100644 --- a/src/apps.js +++ b/src/apps.js @@ -383,7 +383,7 @@ function getDuplicateErrorDetails(errorMessage, locations, domainObjectMap, port // check if any of the port bindings conflict for (let portName in portBindings) { - if (portBindings[portName] === parseInt(match[1])) return new BoxError(BoxError.ALREADY_EXISTS, `Port ${match[1]} is reserved`, { portName }); + if (portBindings[portName] === parseInt(match[1])) return new BoxError(BoxError.ALREADY_EXISTS, `Port ${match[1]} is in use`, { portName }); } if (match[2] === 'dataDir') {