Skip to content

Commit

Permalink
Bump buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
haf committed Jun 13, 2018
1 parent 5107b16 commit 27e89d5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#### 5.0.0-beta.18
* Ref #348 — wait for buffers - don't throw exceptions; push fix till later
* Ref #348 — bump Stackdriver buffer size

#### 5.0.0-beta.17
* Fix #348 — wait for buffers
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.Facade.Tests/Logary.Facade.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Logary.Facade.Tests</AssemblyName>
<Version>5.0.0-beta.17</Version>
<Version>5.0.0-beta.18</Version>
<Version>5.0.0-beta.12</Version>
<OutputType>Exe</OutputType>
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.Facade/Logary.Facade.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Logary.Facade</AssemblyName>
<Version>5.0.0-beta.17</Version>
<Version>5.0.0-beta.18</Version>
<Version>5.0.0-beta.12</Version>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.PerfTests/Logary.PerfTests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
<Version>5.0.0-beta.17</Version>
<Version>5.0.0-beta.18</Version>
<OutputType>Exe</OutputType>
<ServerGarbageCollection>true</ServerGarbageCollection>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary.Tests/Logary.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Version>5.0.0-beta.17</Version>
<Version>5.0.0-beta.18</Version>
<Version>5.0.0-beta.12</Version>
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
<NoWarn>44</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion src/Logary/Logary.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Logary</AssemblyName>
<Version>5.0.0-beta.17</Version>
<Version>5.0.0-beta.18</Version>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<NoWarn>44;2003</NoWarn>
<DefineConstants>TYPESHAPE_EXPOSE</DefineConstants>
Expand Down
3 changes: 2 additions & 1 deletion src/targets/Logary.Targets.Stackdriver/Target_Stackdriver.fs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ module internal Impl =
/// Create a new StackDriver target
[<CompiledName "Create">]
let create conf name =
TargetConf.createSimple (Impl.loop conf) name
{ TargetConf.createSimple (Impl.loop conf) name
with bufferSize = 2048us }

type Builder(conf, callParent: Target.ParentCallback<Builder>) =

Expand Down

0 comments on commit 27e89d5

Please sign in to comment.