Skip to content

Commit

Permalink
normalize line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
evilpilaf committed Jan 26, 2021
1 parent a293df0 commit c988a16
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[*]
indent_style = space
indent_size = 2
end_of_line = lf

# Code files
[*.{cs,csx,vb,vbx}]
Expand Down
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* text=auto
* text eol=lf
Binary file modified assets/icon124x124.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/Honeycomb.Serilog.Sink/HoneycombSerilogSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ public async Task EmitBatchAsync(IEnumerable<LogEvent> events)
await SendBatchedEvents(writer!.ToString()).ConfigureAwait(false);
}

// ReSharper disable UnusedMember.Local
private async Task SendBatchedEvents(Stream events)
// ReSharper restore UnusedMember.Local
{
using var requestMessage = new HttpRequestMessage(HttpMethod.Post, string.Format(HoneycombBatchEndpointTemplate, _teamId))
{
Expand Down

0 comments on commit c988a16

Please sign in to comment.