fix(cli): Clarify webhook error message & fix typo

This commit is contained in:
Hendy Irawan 2020-03-31 23:54:25 +07:00
parent 263c1eee1d
commit b3bf138e3b
2 changed files with 4 additions and 4 deletions

View file

@ -113,8 +113,8 @@ export class ActiveWorkflowRunner {
const webhookData: IWebhookData | undefined = this.activeWebhooks!.get(httpMethod, path);
if (webhookData === undefined) {
// The requested webhook is not registred
throw new ResponseHelper.ResponseError('The requested webhook is not registred.', 404, 404);
// The requested webhook is not registered
throw new ResponseHelper.ResponseError(`The requested webhook "${httpMethod} ${path}" is not registered.`, 404, 404);
}
const workflowData = await Db.collections.Workflow!.findOne(webhookData.workflowId);

View file

@ -58,8 +58,8 @@ export class TestWebhooks {
const webhookData: IWebhookData | undefined = this.activeWebhooks!.get(httpMethod, path);
if (webhookData === undefined) {
// The requested webhook is not registred
throw new ResponseHelper.ResponseError('The requested webhook is not registred.', 404, 404);
// The requested webhook is not registered
throw new ResponseHelper.ResponseError(`The requested webhook "${httpMethod} ${path}" is not registered.`, 404, 404);
}
const webhookKey = this.activeWebhooks!.getWebhookKey(webhookData.httpMethod, webhookData.path);