fyi @gterdem
@mehmet received your email. we'll get back to you once we finish
if you are using your module with project references then you must be able to debug it. if you are using package references then it's not possible (you need to reference it as project reference)
thanks for the feedback
If there was a authorization, will you use a real user account to authorize? it sounds odd. you need to make a new manager service (domain service) to operate your background job without any authorization requirement. otherwise you break best practises.
@cellero , I'll check this and get back to you
See the related PR => https://github.com/abpframework/abp/pull/7753/files The issue => https://github.com/abpframework/abp/issues/7752
basically you can save all the generated tokens in a database table, when a new request comes, you'll query the database did you try this https://stackoverflow.com/questions/36151800/asp-net-mvc-identity-securitystamp-signout-everywhere
I see that your Microservice project uses SQL your main project uses PostgreSQL. And both of them uses the same dbcontext. it'll not work this way.