Skip to content

Commit

Permalink
Fixed a bug and updated version file
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevenediger committed Dec 6, 2013
1 parent 2033e68 commit 59620f2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions statsd.net.shared/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.1.0")]
[assembly: AssemblyFileVersion("1.3.1.0")]
[assembly: AssemblyVersion("1.4.0.2")]
[assembly: AssemblyFileVersion("1.4.0.2")]
2 changes: 1 addition & 1 deletion statsd.net.shared/Structures/GaugesBucket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class GaugesBucket : Bucket
public GaugesBucket(KeyValuePair<string, int>[] gauges, long epoch, string rootNamespace = "")
: base(BucketType.Count, epoch, rootNamespace)
{
Gauges = Gauges;
Gauges = gauges;
}

public override GraphiteLine[] ToLines()
Expand Down
1 change: 1 addition & 0 deletions statsd.net/Framework/TimedGaugeAggregatorBlockFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public static ActionBlock<StatsdMessage> CreateBlock(ITargetBlock<Bucket> target
}

gauges.Clear();
target.Post(bucket);
};

incoming.Completion.ContinueWith(p =>
Expand Down
4 changes: 2 additions & 2 deletions statsd.net/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
// Uses SEMVER: http://semver.org/
[assembly: AssemblyVersion("1.4.0.1")]
[assembly: AssemblyFileVersion("1.4.0.1")]
[assembly: AssemblyVersion("1.4.0.2")]
[assembly: AssemblyFileVersion("1.4.0.2")]

0 comments on commit 59620f2

Please sign in to comment.