Martijn van der Woud

Results 12 comments of Martijn van der Woud

@kylefarris Sure, if you can point me in the right direction on what could cause the issue and how it could be fixed (I have no clue at the moment),...

@kylefarris Thanks, that is much simpler indeed. I had to install `@types/node` as a devDependency before I could use the Readable.from method. Unfortunately, the result is still the same: ```...

I already stepped through that code with my debugger, but was not able to detect the cause of the issue. Of course it does not help that I am not...

My instance of ClamAV is running inside a Kubernetes cluster. Locally, I deploy it to a single-node cluster created with minikube

Yes, that is correct, I connect to ClamAV with an IP (well, a host name, actually) and a port. The IP is a virtual IP assigned by the Kubernetes network...

Do you still want to proceed with this issue @kylefarris ?

As I said earlier, I need a shared debug session or at least some pointers from you before I can work on this. Un-assigning myself for now

@AishwaryaKotla unfortunately, no. I ended up using the passthrough method (see my first comment): ```typescript isInfected: (contents: Buffer) => new Promise((resolve, reject) => { let chunk: Buffer | null =...

Hi Steven, thanks for your reply! Perhaps I did not describe the problem clearly enough: ALL events encountered during a replay are added to the `tokenAtReset` attribute. This means that...

Looking further at `org.axonframework.extensions.mongo.eventsourcing.eventstore.MongoTrackingToken#covers`: ``` @Override public boolean covers(TrackingToken other) { Assert.isTrue(other instanceof MongoTrackingToken, () -> "Incompatible token type provided."); //noinspection ConstantConditions MongoTrackingToken otherToken = (MongoTrackingToken) other; long oldest =...