Alexey Zimarev

Results 206 comments of Alexey Zimarev

What Greg said. Another alternative - introduce a `UserDeactivationRequest` aggregate, which would have an event `DeactivationRequested`. Each context would consume an integration event of a similar kind, and produce its...

What I mean is going that way will have a serious constraint that is technical, limiting your system from having freedom about its infrastructure.

> Because you have read models that only listen to a particular stream. I always, by default, subscribe to `$all`. Why would you only project from a "particular stream"? I...

I often see process managers managing its state, which looks like a missing concept of the domain model. As you might have noticed, I wrote my comment right after you...

> Please be honest and analyze all the artifacts that you need to define in other to make this work I am honest, not sure where this comes from. I...

Or like this: ```csharp static readonly Dictionary ImportPrivateKey = new Dictionary { {"BEGIN PRIVATE KEY", (rsa, key) => rsa.ImportPkcs8PrivateKey(key, out _)}, {"BEGIN RSA PRIVATE KEY", (rsa, key) => rsa.ImportRSAPrivateKey(key, out...

Btw here is the C# code that supports multiple key types: https://github.com/oocx/ReadX509CertificateFromPem/blob/master/Oocx.ReadX509CertificateFromPem/CertificateFromPemReader.cs

@hayley-jean @jageall do you have any comment for this one?

Although it might be useful to have error metrics, I have never seen the log level counters exposed as metrics. Any decent log collector (Kibana, Datadog, Seq, etc) have the...

Closing it for now. I haven't been able to test it yet.