Tim Bussmann

Results 41 issues of Tim Bussmann

Hey @lalunamel I've noticed that you didn't specify a license for your code on this repository. This means that your code might be under exclusive copyright which means a legal...

We move project cards to the top of a column using `await client.Repository.Project.Card.Move(card.Id, new ProjectCardMove(ProjectCardPosition.Bottom, columnId, null));` which then fails with the following error message: ``` {"message":"Validation Failed","errors":[{"resource":"ProjectCard","code":"unprocessable","field":"data","message":"The afterCard must...

Question: using the SDK

## Problem definition Currently, users have to define their message contracts using one of these two ways: * implement one of the message interfaces `ICommand` `IEvent` or `IMessage`. Many users...

There are various ways to define and share message contracts between endpoints. Along with that comes a range of options to evolve the message contracts: * Define new messages *...

Currently the Outbox requires business data to be stored on the same database as the Outbox data in order to provide the stated guarantees. There seems to be a use...

Recoverability settings and error notifications can only be configured on an endpoint level. Sometimes, specific messages should be retried different amounts of time, or users would like to be notified...

Improvement

The sagas timeout API has the following signature: `Task RequestTimeout(IMessageHandlerContext context, DateTime at)` it still uses `DateTime` although we switched the delayed delivery APIs on `SendOptions` to `DateTimeOffset`. Internally, the...

Breaking change
UX

As part of `Endpoint.Start`, all defined `FeatureStartupTask`s defined by Features are started sequentially. If a subsequent startup task fails (or some other startup failure happens after all startup tasks have...

TODO: - [ ] Link to this sample from the main page

## Relevant information When migrating a ServiceControl instance to a new server or system, it's not obvious how to transfer the data of the existing SC instance to the new...