You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, there's an inconsistency in the way the transport is configured between the full example code, and the line-by-line explanation further down.
In the full version:
var transport = endpointConfiguration.UseTransport(new LearningTransport());
In the line-by-line version:
var transport = endpointConfiguration.UseTransport<LearningTransport>();
These end up returning different objects, which breaks a later step in the tutorial - the fix would be to ensure the full example code uses the generic version of the UseTransport method.
The text was updated successfully, but these errors were encountered:
Feedback for 'NServiceBus Step-by-step: Getting started' https://docs.particular.net/tutorials/nservicebus-step-by-step/1-getting-started/
Location in GitHub: https://github.com/Particular/docs.particular.net/blob/master/tutorials/nservicebus-step-by-step/1-getting-started/tutorial.md
Hi, there's an inconsistency in the way the transport is configured between the full example code, and the line-by-line explanation further down.
In the full version:
var transport = endpointConfiguration.UseTransport(new LearningTransport());
In the line-by-line version:
var transport = endpointConfiguration.UseTransport<LearningTransport>();
These end up returning different objects, which breaks a later step in the tutorial - the fix would be to ensure the full example code uses the generic version of the
UseTransport
method.The text was updated successfully, but these errors were encountered: