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
7e90b59 introduced a change to subscription naming and we happen to have a lot of Request message names that cause the Subscription Path to break the 50 character limit imposed by Service Bus.
One example is: nextgen.appserver.getrecordsmodifiedsincerequesthandler
public static string SubscriptionNameFor(string applicationName, string instanceName, Type handlerType)
{
return Sanitize(string.Join(".", new[] {applicationName, instanceName, handlerType.Name}));
}
The offending code in the Microsoft.ServiceBus assembly in NamespaceManager (v2.1.3.0):
7e90b59 introduced a change to subscription naming and we happen to have a lot of Request message names that cause the Subscription Path to break the 50 character limit imposed by Service Bus.
One example is: nextgen.appserver.getrecordsmodifiedsincerequesthandler
The offending code in the Microsoft.ServiceBus assembly in NamespaceManager (v2.1.3.0):
This issue was raised here also Particular/NServiceBus.Azure#19
The text was updated successfully, but these errors were encountered: