Skip to content

Commit 21d100d

Browse files
authored
Merge pull request #9 from tektronix/develop
Pull latest fixes in develop into master
2 parents ef49bd5 + 4bca6c8 commit 21d100d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

InitialState.NET/ISStreamer.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ namespace InitialState.Streaming
2525
{
2626
public struct StreamResponse
2727
{
28-
public bool Success;
28+
private bool success;
2929
public System.Net.HttpStatusCode StatusCode;
3030
public int RateLimit;
3131
public int RateLimitRemaining;
3232
public DateTime RateLimitReset;
33+
34+
public bool Success { get => success; internal set => success = value; }
3335
}
3436

3537
/// <summary>
@@ -226,7 +228,7 @@ public CreateBucketStatus CreateBucket(string accessKey, string bucketKey, strin
226228
return null;
227229
}
228230

229-
StreamResponse sr;
231+
StreamResponse sr = new StreamResponse();
230232

231233
_jsonStrBuilder.Clear();
232234
_jsonStrBuilder.Append("[\r\n");

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# InitialState<nolink/>.NET [![Tektronix](https://tektronix.github.io/media/TEK-opensource_badge.svg)](https://github.com/tektronix)
1+
# InitialState<nolink/>.NET [![Tektronix](https://tektronix.github.io/media/TEK-opensource_badge.svg)](https://github.com/tektronix) [![CodeFactor](https://www.codefactor.io/repository/github/tektronix/initialstate.net/badge)](https://www.codefactor.io/repository/github/tektronix/initialstate.net) [![Total alerts](https://img.shields.io/lgtm/alerts/g/tektronix/initialstate.NET.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/tektronix/initialstate.NET/alerts/)
22
InitialState<nolink/>.NET is a .NET class library that simplifies streaming event data to Initial State. http://www.initialstate.com
33

44

0 commit comments

Comments
 (0)