hi
Your logs come from the AuthServer project. Do you also have an API website that uses JWT Bearer authentication?
Can you share the API and web projects logs?
Thanks.
ok, I will try it.
Thanks.
hi
Can you share the project info?
App or Tiered and UI type? I will try to reproduce it.
I will provide a solution to localize the error message once it is reproduced.
Thanks.
hi
It should be POST, Can you debug the OnPostAsync method of GatewaySelectionModel?
Thanks.
hi
Can you check the logs?
Or you can set a breakpoint to see why the page returns a 404.
Thanks
Could not find IdentityClientConfiguration for AbpMvcClient. Either define a configuration for AbpMvcClient or set a default configuration.
How to reproduce this?
hi
Usually you don't need to modify anything, the module and template code already work out of the box.
https://abp.io/docs/latest/framework/fundamentals/dynamic-claims
Thanks.
hi
The InboxProcessor uses distributed locks to prevent messages from being processed multiple times.
That is, there will be only one processor processing the message at a time.
https://github.com/abpframework/abp/blob/rel-10.0/framework/src/Volo.Abp.EventBus/Volo/Abp/EventBus/Distributed/InboxProcessor.cs#L88
The new Failure Retry Policy for InboxProcessor in 10.0:
https://abp.io/docs/10.0/release-info/migration-guides/abp-10-0#failure-retry-policy-for-inboxprocessor
Thanks