We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda4012 commit 39edebaCopy full SHA for 39edeba
articles/service-bus-messaging/service-bus-partitioning.md
@@ -68,7 +68,7 @@ using (TransactionScope ts = new TransactionScope(committableTransaction))
68
ServiceBusMessage msg = new ServiceBusMessage("This is a message");
69
msg.PartitionKey = "myPartitionKey";
70
await sender.SendMessageAsync(msg);
71
- await ts.Complete();
+ ts.Complete();
72
}
73
committableTransaction.Commit();
74
```
@@ -88,7 +88,7 @@ using (TransactionScope ts = new TransactionScope(committableTransaction))
88
89
msg.SessionId = "mySession";
90
91
92
93
94
0 commit comments