update parse-url, improve Dockerfile

This commit is contained in:
Dave Horton
2022-07-06 19:16:31 +02:00
parent aceaa5b7da
commit f95524863d
6 changed files with 69 additions and 142 deletions

View File

@@ -23,9 +23,8 @@ class HttpRequestor extends BaseRequestor {
this.authHeader = basicAuth(hook.username, hook.password);
const u = parseUrl(this.url);
const myPort = u.port ? `:${u.port}` : '';
const baseUrl = this._baseUrl = `${u.protocol}://${u.resource}${myPort}`;
//const myPort = u.port ? `:${u.port}` : '';
const baseUrl = this._baseUrl = `${u.protocol}://${u.resource}`;
this.get = bent(baseUrl, 'GET', 'buffer', 200, 201);
this.post = bent(baseUrl, 'POST', 'buffer', 200, 201);