Skip to content

Commit

Permalink
Merge pull request #219 from datalust/dev
Browse files Browse the repository at this point in the history
7.0.1 Release
  • Loading branch information
nblumhardt committed May 3, 2024
2 parents bf6c2f8 + e9b2c6c commit 803b4ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Serilog.Sinks.Seq/Serilog.Sinks.Seq.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>A Serilog sink that writes events to Seq using newline-delimited JSON and HTTP/HTTPS.</Description>
<VersionPrefix>7.0.0</VersionPrefix>
<VersionPrefix>7.0.1</VersionPrefix>
<Authors>Serilog Contributors;Serilog.Sinks.Seq Contributors;Datalust Pty Ltd</Authors>
<Copyright>Copyright © Serilog Contributors, Serilog.Sinks.Seq Contributors, Datalust Pty Ltd.</Copyright>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
Expand Down Expand Up @@ -30,7 +30,7 @@

<ItemGroup>
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="4.0.0" />
<PackageReference Include="Serilog.Sinks.PeriodicBatching" Version="4.1.0" />
<PackageReference Include="Nullable" Version="1.3.1" PrivateAssets="All" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Serilog.Sinks.Seq/Sinks/Seq/Http/SeqIngestionApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ abstract class SeqIngestionApi : IDisposable
/// <exception cref="HttpRequestException">The ingestion request could not be sent.</exception>
public async Task<LogEventLevel?> IngestAsync(string clefPayload)
{
var result = await TryIngestAsync(clefPayload, CompactLogEventFormatMediaType);
var result = await TryIngestAsync(clefPayload, CompactLogEventFormatMediaType).ConfigureAwait(false);

if (!result.Succeeded)
throw new LoggingFailedException($"Received failed result {result.StatusCode} when posting events to Seq.");
Expand Down

0 comments on commit 803b4ab

Please sign in to comment.