Rafał Konrad Pawłaszek
Rafał Konrad Pawłaszek
Hi @seawatts @jeremydaly I created a [PR](https://github.com/jeremydaly/data-api-client/pull/112) to address this issue. It not only enables the introduction of X-Ray, but decouples the library from any, specific `aws-sdk` version so the...
I had something different in mind, but what you're proposing is great. And I think this could be combined in one. My suggestion was there because I often start a...
Just in clarify: with the second point: if the user does not perform the required action (like clicking "I'm still working on that task") within a specified time (e.g. 30...
I thought of setting a time that would be a 'minimal grain of resolution' for the tasks. So in my view it should be only one period time set, and...
@MayGo, this is understood and thank you for honesty. I do think that this application deserves not only praise, but more importantly - traction. Fingers crossed for transitioning towards a...
I don't know if I understand correctly, but I suppose that you have to set up your own [naming convention](https://github.com/pardahlman/RawRabbit/blob/6229f5285d2cb5b9370ebfb616de2977d0386e24/src/RawRabbit/Common/NamingConventions.cs). You can also [override the default configuration by hand](https://github.com/pardahlman/RawRabbit/blob/6229f5285d2cb5b9370ebfb616de2977d0386e24/docs/operations/subscribe.md#override-default-configuration). Hope...
You can pass it directly in the method: ``` using (var cts = new CancellationTokenSource()) { var token = cts.Token; await client.SubscribeAsync(async msg => { await LongOperationAsync(msg.Prop, token); }, null,...
> Is it possible to publish raw Json Messages ? Yes. This is [set by default](https://github.com/pardahlman/RawRabbit/blob/664763d7cdea9d4f667cc6e1c4901ca7ab8039da/src/RawRabbit/DependencyInjection/RawRabbitDependencyRegisterExtension.cs#L49). Ok, there is one thing, [this setting](https://github.com/pardahlman/RawRabbit/blob/664763d7cdea9d4f667cc6e1c4901ca7ab8039da/src/RawRabbit/DependencyInjection/RawRabbitDependencyRegisterExtension.cs#L60) will include `$id` property in the serialized...
If I'm not mistaken you have the same idiom, `Event`, placed in separate assemblies as effectively different types. Have you tried with `Event` put into a common classlib? I see...
Hi all, not a solution but a two-step workaround (until it's resolved). Apparently terraform expects a definition with attributes in a specific order. So in order (and for `"Salesforce"` connector...