Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Dec 12, 2018
1 parent bf3c50e commit 0951e41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.1.2
# 0.1.3

- [Fix] Using basic auth instead of bearer token

Expand Down
1 change: 1 addition & 0 deletions src/PipelinesTestLogger/LoggerQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ private async Task PostResultsAsync(ICollection<string> jsonEntities, Cancellati
HttpContent content = new StringContent(jsonArray, Encoding.UTF8, "application/json");
try
{
Console.WriteLine("POST" + Environment.NewLine + jsonArray);
HttpResponseMessage response = await _client.PostAsync(_apiUrl, content, cancellationToken);
response.EnsureSuccessStatusCode();
totalSent += jsonEntities.Count;
Expand Down

0 comments on commit 0951e41

Please sign in to comment.