adrianm64

Results 11 comments of adrianm64

@StefH, > Maybe an out-of-the-box question : why not create a source-code only NuGet package ? In that way you don't need to upgrade the NuGet everytime Microsoft releases a...

The failed checks is for code I didn't touch.

It is not blocking, its async. Caller can just skip `await` and it will run fine in the "background". ``` var monitorTask = monitor.StartAsync(cts.Token); // Continue program while monitor is...

> public Func OnFilesChanged That is a bad idea. Multiple handlers can still be added with e.g. `+=` and they need to be invoked by looping over the OnFilesChanged.GetInvokationList(). (invoking...

Restored the previous code and reworked it into a new class instead. Don't think it should be merged as is but use it more as something to discuss. Summary of...

> I'm normally very happy to receive every contribution and PR as I believe our contributors have been very instrumental in our success. > > This PR however, had many...

Thank you for your looking into it. 1. Tried to look in the code and can't say I understand the state handling and how streams are reused on reconnect. Is...

What do you mean with **verbose** log? Have searched the documentation but can't find anything about logging levels. Here is a complete session log ``` 2024-10-11T12:20:11.7691619+02:00 [DBG] > GetListing("Prod/From_PN/*.xml", Auto)...

Your analysis is correct. I have a timer running looking for new files every 10 minutes. It has been running for a long time but problems started appearing recently. FluentFtp...

Thank you for all your efforts. I really appreciate it. My service application handles exceptions by restarting which works fine for this error. Just causes some red in the telemetry...