Hi. Do you have some module for generate pdf/excel?
Does ABP have a feature out of the box to parallel migration process inside Kubernetes cluster as Kubernetes Jobs to distribute the load between instances, rather than parallel migration process using threads within one Job for all applications on one instance? It would be really useful during the project growing because when you have >100 microservices with migrations, one Job to migrate all applications in parallel look, at least, like a workload with enough resources consumption.
Or maybe there is a feature to run DBMigrator per application/microservice rather than collect all migrations from all applications to run migration process for all of them?
Currently I got what happend. We miss the orderService for angular. But why can we login in the first time? It is looks like a bug.
And also I forgot to note that this problem happen only on some environment. If we run application locally through the we do not get this problem
currently we have disabled writing to the txt file. But we can add it again and send you this file. But it take a few time
Good morning. The problem is after deploy we can login as an admin but after few time we can not to login at all and get this error message:
error: "invalid_request" error_description: "This client application is not allowed to use the specified scope." error_uri: "https://documentation.openiddict.com/errors/ID2051"
If we deploy application (without some changes we can login again but after few time can not). Also I tried to use the link below but this page is empty
How can I mock grpc server for tests? I have 2 microservices and from one of them i send request through gprc to second one. I have overwrited AfterAddApplication. This works but the request is sent to real service and of couse i got exception.
protected override void AfterAddApplication(IServiceCollection services)
{
_client = Substitute.For<MyClass>();
var responce = AsyncUnaryCall<SomeClass>(); //responce with real value
_client.GetAllAsync(Arg.Any<Request>()).Returns(responce);
services.AddSingleton(_client);
}