Ramon Smits

Results 162 comments of Ramon Smits

> Another way is to use it to receive other messages. In your case, you are letting the receiver go idle after receiving the initial message, and it gets closed...

I've applied a quick hack to [App.Metrics.Formatters.Ascii.Internal.MetricsTextPoint::WriteAsync](https://github.com/AppMetrics/AppMetrics/blob/features/4.2.0/src/Core/src/App.Metrics.Formatters.Ascii/Internal/MetricsTextPoint.cs#L51-L85) to remove all formatting fluff from the method. ```c# public async ValueTask WriteAsync(TextWriter textWriter, string separator, int padding) { if (textWriter == null)...

@bahusoid thanks for that tip, I've created the following extension method around it which I'll test later. ```c# static class SessionExt { public async static Task BeginTransactionAsync( this ISession session,...

Keep upvoting on the official API! - https://github.com/tdlib/telegram-bot-api/issues/260 If its not implemented by Telegram itself support for it cannot be added to the client.

While not using this project but the Microsoft article we solved it by keeping a list of platform-specific assemblies. See the code at: https://gist.github.com/ramonsmits/aef6872d20192acd403fa883c923032a ```c# var platformSpecificAssemblies = new Dictionary...

After posting my last comment I just tested my last comment to probe for frameworks in a certain order and that works beautifully for our usage. I updated the gist.

@zeko77 Our last release was tested ok: https://github.com/Particular/NServiceBus.Persistence.Sql/actions/runs/5312223106 It was also using [Npgsql 7.0.4](https://github.com/Particular/NServiceBus.Persistence.Sql/blob/8c735c5e4c9448d9ca51786e9f075497baf5fe91/src/TestHelper/TestHelper.csproj#L12) but based on the [CI workflow tested against `postgres:14`](https://github.com/Particular/NServiceBus.Persistence.Sql/blob/8c735c5e4c9448d9ca51786e9f075497baf5fe91/.github/workflows/ci.yml#L81C50-L81C61). I'll run your repro Tomorrow to see...

@zeko77 I tested your repro and https://github.com/Particular/docs.particular.net/blob/master/samples/sql-persistence/simple/SqlPersistence_7/ Our sample works fine with Postgres 14 and 15 but yours is using RabbitMQ transport and our sample the learning transport. After converting...

@zeko77 Can you share how you are currently affected and also if you are a licensed customer? If you don't want to disclose this publicly then please provide these details...

@ctlaltdefeat I think rebooting helped :-)