Skip to content

Commit 570f61b

Browse files
authored
3.10.1: Fix stack trace bug (#1637)
* 3.10.1 release
1 parent fd46122 commit 570f61b

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

Microsoft.Azure.Cosmos/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<ClientOfficialVersion>3.10.0</ClientOfficialVersion>
4+
<ClientOfficialVersion>3.10.1</ClientOfficialVersion>
55
<ClientPreviewVersion>3.9.1</ClientPreviewVersion>
66
<DirectVersion>3.10.0</DirectVersion>
77
<EncryptionVersion>1.0.0-preview4</EncryptionVersion>

Microsoft.Azure.Cosmos/src/Handler/TransportHandler.cs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@ public override async Task<ResponseMessage> SendAsync(
3131
RequestMessage request,
3232
CancellationToken cancellationToken)
3333
{
34-
string stackTrace = new StackTrace().ToString();
35-
36-
await Task.Run(() =>
37-
{
38-
string st = new StackTrace().ToString();
39-
Console.WriteLine(st);
40-
});
41-
4234
try
4335
{
4436
using (new ActivityScope(Guid.NewGuid()))

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## Unreleased
77

8+
## <a name="3.10.1"/> [3.10.1](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.10.1) - 2020-06-18
9+
10+
- [#1637](https://github.com/Azure/azure-cosmos-dotnet-v3/pull/1637) TransportHandler : Removed stack trace print. Introduced in 3.10.0 PR 1587
11+
812
## <a name="3.10.0"/> [3.10.0](https://www.nuget.org/packages/Microsoft.Azure.Cosmos/3.10.0) - 2020-06-18
913

1014
### Added

0 commit comments

Comments
 (0)