mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-22 20:12:02 -06:00
Fix not found event message for the event services
This commit is contained in:
parent
4aac2da253
commit
cca063dfed
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user