Comments
1 comment
-
Hi sdks,
Good catch! Thanks for finding this.
The latest stable build found here should fix the issue.
Let me know if this fixes it. If you find any more issues, please let us know.
Best regards,
David
Add comment
Please sign in to leave a comment.
BEGIN
BEGIN TRANSACTION;
WAITFOR
(
RECEIVE TOP (1)
@conversation_handle = conversation_handle,
@message_body = CAST(CAST(message_body AS NVARCHAR(36)) AS UNIQUEIDENTIFIER),
@message_type_name = message_type_name
FROM SBReceiveQueue;
), TIMEOUT 1000;