Skip to content

Commit

Permalink
3.10.1: Fix stack trace bug (#1637)
Browse files Browse the repository at this point in the history
* 3.10.1 release
  • Loading branch information
j82w authored and kirankumarkolli committed Jul 11, 2020
1 parent a4c5351 commit 71715e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Microsoft.Azure.Cosmos/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ClientOfficialVersion>3.10.0</ClientOfficialVersion>
<ClientOfficialVersion>3.10.1</ClientOfficialVersion>
<ClientPreviewVersion>3.9.1</ClientPreviewVersion>
<DirectVersion>3.10.0</DirectVersion>
<EncryptionVersion>1.0.0-preview4</EncryptionVersion>
Expand Down
8 changes: 0 additions & 8 deletions Microsoft.Azure.Cosmos/src/Handler/TransportHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@ public override async Task<ResponseMessage> SendAsync(
RequestMessage request,
CancellationToken cancellationToken)
{
string stackTrace = new StackTrace().ToString();

await Task.Run(() =>
{
string st = new StackTrace().ToString();
Console.WriteLine(st);
});

try
{
using (new ActivityScope(Guid.NewGuid()))
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## <a name="3.10.1"/> [3.10.1](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.10.1) - 2020-06-18

- [#1637](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/1637) TransportHandler : Removed stack trace print. Introduced in 3.10.0 PR 1587

## <a name="3.10.0"/> [3.10.0](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.10.0) - 2020-06-18

### Added
Expand Down

0 comments on commit 71715e8

Please sign in to comment.