<t>You can make the function async:<br/>
<br/>
public static async Task Run(<br/>
[ServiceBusTrigger("topicname", "subname", AccessRights.Manage, Connection = "TopicConnection")]string message,<br/>
TraceWriter log)<br/>
{<br/>
try<br/>
{<br/>
log.Info($"C# ServiceBus topic trigger function processed message: {message}");<br/>
await PushToDb(message, log);<br/>
}<br/>
catch(Exception ex)<br/>
{<br/>
log.Info($"Exception found {ex.Message}");<br/>
}<br/>
}<br/>
<br/>
```<br/>
<br/>
The Functions runtime allows you to make your function async and return a Task.<br/>
<br/>
In this case we can just await the call so we can handle exceptions normally.</t>