After updating version from 7.4.2 to 8.0.0, my angular app has the following error
ERROR Error: NG0302: The pipe 'abpLocalization' could not be found in the 'HttpErrorComponent' component. Verify that it is included in the '@Component.imports' of this component. Find more at https://angular.io/errors/NG0302 at getPipeDef (core.mjs:27712:15) at Module.ɵɵpipe (core.mjs:27653:19) at HttpErrorComponent_ng_container_0_Template (volosoft-abp.ng.theme.lepton-x.mjs:42:103) at executeTemplate (core.mjs:12181:9) at renderView (core.mjs:15243:13) at createAndRenderEmbeddedLView (core.mjs:19773:5) at TemplateRef.createEmbeddedViewImpl (core.mjs:28065:31) at ViewContainerRef.createEmbeddedView (core.mjs:19945:37) at Object.next (abp-ng.core.mjs:3287:28) at ConsumerObserver.next (Subscriber.js:91:33)
Specific roles and Organization Units I would like a feature that would force MFA for users.
I would like to specify the IP address that can be used to log in for each tenant https://support.abp.io/QA/Questions/6130/I-would-like-to-specify-the-IP-address-that-can-be-used-to-log-in-for-each-tenant
thx
Are there any plans to implement this kind of functionality in ABP Commercial?
I would like to specify the IP address that can be used to log in for each tenant. Is this possible with ABP Commercial's functions?
ABP Framework version: Commercial 7.4 UI type: Angular DB provider: EF Core
Hi, we have redis commands that timeout. I asked that problem in StackExchange/StackExchange.Redis, and got the answer.
It looks like you're experiencing thread exhaustion (
WORKER: (Busy=38,Free=32729,Min=8,Max=32767)), likely from long-running synchronous operations. I can't say about the rest of your application, but you for sure have some synchronous Redis calls (sync-ops: 7262, async-ops: 28127). You'll want to do all those things async to have much better utilization of the thread pool and less blocking/stalls as a result of thread exhaustion (waiting for a new one to become available).
reference: https://github.com/StackExchange/StackExchange.Redis/issues/2558
According to the analysis, what we can do for solving timeout issue in ABP Framework?
ABP Framework version: Commercial 7.2 UI type: Angular DB provider: EF Core
By the way, we use "Amazon ElastiCache for Redis". When using AWS, is there a recommended redis service?