diff --git a/test-app/docker-compose-nightlies.yaml b/test-app/docker-compose-nightlies.yaml index e9a70161..161a0fde 100644 --- a/test-app/docker-compose-nightlies.yaml +++ b/test-app/docker-compose-nightlies.yaml @@ -22,6 +22,6 @@ services: volumes: - ./containerLogs:/var/opt/MarkLogic/Logs ports: - - 8000-8016:8000-8016 + - 8000-8017:8000-8017 - 8024-8029:8024-8029 - 8079:8079 diff --git a/test-app/docker-compose.yaml b/test-app/docker-compose.yaml index af43e8c7..cd0181d0 100644 --- a/test-app/docker-compose.yaml +++ b/test-app/docker-compose.yaml @@ -15,4 +15,4 @@ services: - ./docker/marklogic/logs:/var/opt/MarkLogic/Logs ports: - 8000-8002:8000-8002 - - 8015-8016:8015-8016 + - 8015-8017:8015-8017 diff --git a/test-basic/client.js b/test-basic/client.js index 24236061..1edff42c 100644 --- a/test-basic/client.js +++ b/test-basic/client.js @@ -146,7 +146,8 @@ describe('database clients', function () { .result() .catch(error => { try{ - assert(error.message.toString().includes('You have attempted to access an HTTP server using HTTPS. Please check your configuration.')); + assert(error.message.toString().includes('You have attempted to access an HTTP server using HTTPS. Please check your configuration.') || + error.message.toString().includes('write EPROTO')); done(); } catch(err){ done(err);