Ramon Smits

Results 162 comments of Ramon Smits

@ifonya105 Just tested `GetDirectMessageListAsync` and it still returns the same message. Maybe the `SlackTaskClient` hasn't been updated yet?

Tested is with `SlackClient` which gives me the same result: ```c# var client = new SlackTaskClient(Token); var channels = await client.GetDirectMessageListAsync(); ```

Ok, so `GetDirectMessageListAsync` should be removed I guess. I got it to work by doing the following: ```c# var client = new SlackTaskClient(Token); var users = await client.GetUserListAsync(); var user...

@SimonCropp We are added a breaking changes for v8. DateTime is implicitly converted to DateTimeOffset and code would require a recompile anyway. Any objections on that? I think you are...

> reasons to add the DateTimeOffset override in the next minor: @SimonCropp That would mean in the next v7 minor. Not sure if we will still add a minor but...

We currently have a customer which has stability issues. I wanted to suggest to setup performance monitoring and to keep track of the "Processing time" metric. The problem probably is...

@tmasternak I think you wanted to link to https://docs.particular.net/transports/transactions?version=core_8#controlling-transaction-scope-options ? Then replace core with transport and the same problem remains.

FYI: The following gist replaces the stacktrace with an MD5 and if its a new stacktrace writes the stack trace as a Debug log even. This reduces the header data...

@timbussmann The proxy isn't an actual contract type. The header should only contain contract types. Based on the link you have shared this seems to be a regression as it...

@bh3605 It depends on what you mean with clash. NServiceBus CAN create/emit activities if OpenTelemetry is configured to generate them for the NServiceBus namespace via `.AddSource("NServiceBus.*")`. Some users might not...