From 71715e8b45b02f185b4c645158b51e18abcf2b76 Mon Sep 17 00:00:00 2001 From: j82w Date: Thu, 18 Jun 2020 08:40:55 -0700 Subject: [PATCH] 3.10.1: Fix stack trace bug (#1637) * 3.10.1 release --- Microsoft.Azure.Cosmos/Directory.Build.props | 2 +- Microsoft.Azure.Cosmos/src/Handler/TransportHandler.cs | 8 -------- changelog.md | 4 ++++ 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Microsoft.Azure.Cosmos/Directory.Build.props b/Microsoft.Azure.Cosmos/Directory.Build.props index dab7dda78a..02c679956a 100644 --- a/Microsoft.Azure.Cosmos/Directory.Build.props +++ b/Microsoft.Azure.Cosmos/Directory.Build.props @@ -1,7 +1,7 @@ - 3.10.0 + 3.10.1 3.9.1 3.10.0 1.0.0-preview4 diff --git a/Microsoft.Azure.Cosmos/src/Handler/TransportHandler.cs b/Microsoft.Azure.Cosmos/src/Handler/TransportHandler.cs index 2f69c53b1f..90e8eda140 100644 --- a/Microsoft.Azure.Cosmos/src/Handler/TransportHandler.cs +++ b/Microsoft.Azure.Cosmos/src/Handler/TransportHandler.cs @@ -31,14 +31,6 @@ public override async Task 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())) diff --git a/changelog.md b/changelog.md index 3deb6b9443..181a178113 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [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 + ## [3.10.0](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.10.0) - 2020-06-18 ### Added