Skip to content

Commit f3c8d59

Browse files
authored
Merge pull request #46 from serilog/dev
Release 2.1.3
2 parents 95baa54 + 831860c commit f3c8d59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sample/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.1.2",
2+
"version": "2.1.3",
33
"buildOptions": {
44
"emitEntryPoint": true
55
},

src/Serilog.Sinks.Splunk/Sinks/Splunk/EventCollectorSink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ private async Task Send(IEnumerable<LogEvent> events)
205205
}
206206

207207
var request = new EventCollectorRequest(_splunkHost, allEvents.ToString(), _uriPath);
208-
var response = await _httpClient.SendAsync(request);
208+
var response = await _httpClient.SendAsync(request).ConfigureAwait(false);
209209

210210
if (response.IsSuccessStatusCode)
211211
{

src/Serilog.Sinks.Splunk/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.1.2-*",
2+
"version": "2.1.3-*",
33
"description": "The Splunk Sink for Serilog",
44
"authors": [
55
"Matthew Erbs, Serilog Contributors"

0 commit comments

Comments
 (0)