Fix not found event message for the event services

This commit is contained in:
Stênio Aníbal 2024-08-21 15:02:40 -03:00
parent 4aac2da253
commit cca063dfed
3 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ export class RabbitmqController extends EventController implements EventControll
});
if (!data) {
throw new NotFoundException('Instance websocket not found');
throw new NotFoundException('Instance rabbitmq not found');
}
return data;

View File

@ -91,7 +91,7 @@ export class SqsController extends EventController implements EventControllerInt
});
if (!data) {
throw new NotFoundException('Instance websocket not found');
throw new NotFoundException('Instance SQS not found');
}
return data;

View File

@ -63,7 +63,7 @@ export class WebhookController extends EventController implements EventControlle
});
if (!data) {
throw new NotFoundException('Instance websocket not found');
throw new NotFoundException('Instance webhook not found');
}
return data;