- ABP Framework version: v7.1
- UI type: MVC
- DB provider: EF Core / MongoDB
- Tiered (MVC) or Identity Server Separated (Angular): yes
- Exception message and stack trace:
- Steps to reproduce the issue:"
We just created a sample micro service solution on ABP 7.1 and when creating a tenants. tenants are getting created and default user also created. but when we are logging in with tenant user not able to see any applications, are we missing anything??
also we observed there is entries in below table , as per us it should not be empty
4 Answer(s)
-
0
Can you share the error logs? (each service and authserver)
-
0
logs shared to liming.ma@volosoft.com
-
0
inequivalent arg 'x-dead-letter-exchange' for queue 'AppV3_AdministrationService' in vhost '/': received none but current is the value 'AppV3_dead_letter' of type 'longstr''
That means that you have a AppV3_AdministrationService queue on the broker already and it is without an 'x-dead-letter-exchange' argument. Probably you have created it before with that state.
You can remove all RabbitMQ queues and try again.
-
0
inequivalent arg 'x-dead-letter-exchange' for queue 'AppV3_AdministrationService' in vhost '/': received none but current is the value 'AppV3_dead_letter' of type 'longstr''
That means that you have a AppV3_AdministrationService queue on the broker already and it is without an 'x-dead-letter-exchange' argument. Probably you have created it before with that state.
You can remove all RabbitMQ queues and try again.
Thanks for the response, yes we found the issue is with queues, after clearing those it worked perfectly. Thanks