Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
m-nash committed Jun 16, 2021
2 parents 9be2617 + 46b5314 commit b7f85d5
Show file tree
Hide file tree
Showing 4,738 changed files with 547,760 additions and 276,246 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
15 changes: 12 additions & 3 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
/sdk/cognitiveservices/Knowledge.QnAMaker/ @bingisbestest @nerajput1607

# PRLabel: %Cognitive - Text Analytics
/sdk/textanalytics/ @annelo-msft @maririos @suhas92
/sdk/textanalytics/ @annelo-msft @maririos

# ServiceLabel: %Cognitive - Text Analytics %Service Attention
/sdk/cognitiveservices/Language.TextAnalytics/ @assafi
Expand Down Expand Up @@ -277,7 +277,7 @@

# PRLabel: %TimeSeriesInsights
# ServiceLabel: %TimeSeriesInsights %Service Attention
/sdk/timeseriesinsights/ @drwill-ms @timtay-microsoft @abhipsaMisra @vinagesh @azabbasi @bikamani @barustum @jamdavi @yeskarthik @rasidhan @dmdenmsft
/sdk/timeseriesinsights/ @yeskarthik @rasidhan @dmdenmsft

# ServiceLabel: %Event Grid %Service Attention
# PRLabel: %Event Grid
Expand Down Expand Up @@ -386,6 +386,9 @@ sdk/labservices/Microsoft.Azure.Management.LabServices/ @Tanmayeekamat
# ServiceLabel: %Monitor %Service Attention
sdk/monitor/ @SameergMS @dadunl

# PRLabel: %Monitor
sdk/monitor/Azure.Monitor.Query @pakrym

# PRLabel: %Monitor - ApplicationInsights
# ServiceLabel: %Monitor - ApplicationInsights %Service Attention
/sdk/applicationinsights/Microsoft.Azure.App*/ @omziv @anatse @raronen @ischrei @danhadari @azmonapplicationinsights
Expand Down Expand Up @@ -605,14 +608,20 @@ sdk/trafficmanager/Microsoft.Azure.Management.TrafficManager/ @tmsupp
/sdk/tables/ @christothes

# ServiceLabel: %Tables %Service Attention
#/<NotInRepo>/ @klaaslanghout
#/<NotInRepo>/ @sakash279, @sivethe, @ThomasWeiss, @PaulCheng

# ServiceLabel: %TimeseriesInsights %Service Attention
#/<NotInRepo>/ @Shipra1Mishra

# ServiceLabel: %vFXT %Service Attention
#/<NotInRepo>/ @zhusijia26

# ServiceLabel: %VideoAnalyzer %Service Attention
#/<NotInRepo>/ @giakas

# PRLabel: %VideoAnalyzer
/sdk/videoanalyzer/ @giakas @heaths

# ServiceLabel: %Web Apps %Service Attention
#/<NotInRepo>/ @AzureAppServiceCLI @antcp

Expand Down
21 changes: 12 additions & 9 deletions SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,31 @@

## How to file issues and get help  

Customers with a [support plan](https://azure.microsoft.com/en-us/support/options/) can open an Azure Support ticket [here](https://azure.microsoft.com/support/create-ticket/).
**We recommend this option if your problem requires immediate attention.**
### Azure support tickets

Customers with an [Azure support plan](https://azure.microsoft.com/support/options/) can open an [Azure support ticket](https://azure.microsoft.com/support/create-ticket/).
**We recommend this option if your problem requires immediate attention.**

### GitHub issues

We use [GitHub Issues](https://github.com/Azure/azure-sdk-for-net/issues/new/choose) to track bugs, questions, and feature requests.
GitHub issues are free, but **response time is not guaranteed.** See [GitHub issues support process](https://devblogs.microsoft.com/azure-sdk/github-issue-support-process/) for more details.

### Community resources
- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/azure-sdk-.net) and tag it with azure-sdk-.net
- Share or upvote feature requests on [Feedback Page](https://feedback.azure.com/forums/34192--general-feedback).
- Take a look at the [Azure SDK blog](https://devblogs.microsoft.com/azure-sdk/).
- Search for similar issues in [our GitHub repository](https://github.com/Azure/azure-sdk-for-net/issues)
- Chat with other community members on [gitter](https://gitter.im/Azure/azure-sdk-for-net?source=orgpage)
- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/azure-sdk-.net) and tag it with azure-sdk-.net
- Share or upvote feature requests on [Feedback Page](https://feedback.azure.com/forums/34192--general-feedback).
- Ask a question on [Twitter](https://twitter.com/AzureSDK)
- Ask a question at [Microsoft Q&A](https://docs.microsoft.com/answers/products/azure?WT.mc_id=Portal-Microsoft_Azure_Support&product=all)
- Ask a question at [Microsoft Tech Community](https://techcommunity.microsoft.com/t5/azure/ct-p/Azure)
- Search for similar issues in [our GitHub repository](https://github.com/Azure/azure-sdk-for-net/issues)

### Security bugs
Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center(secure@microsoft.com).
You should receive a response within 24 hours.
Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://www.microsoft.com/msrc/faqs-report-an-issue?rtc=1)

### Github issues
We use [GitHub Issues](https://github.com/Azure/azure-sdk-for-net/issues/new/choose) to track bugs, questions, and feature requests.
GitHub issues are free, but **response time is not guaranteed.** See [GitHub issues support process](https://devblogs.microsoft.com/azure-sdk/github-issue-support-process/) for more details.

## Microsoft Support Policy

Please refer to [Azure SDK Support and Lifecycle information](https://azure.github.io/azure-sdk/policies_support.html)
32 changes: 32 additions & 0 deletions common/Perf/Azure.Sample.Perf/OperationCanceledTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using Azure.Test.Perf;
using System;
using System.Threading;
using System.Threading.Tasks;

namespace Azure.Sample.Perf
{
// The perf framework should ignore OperationCanceledException thrown by Run/RunAsync(), but only
// if the test is being cancelled. This verifies that an OperationCanceledException thrown earlier
// will cause the perf framework to fail fast.
// https://github.com/Azure/azure-sdk-for-net/issues/21241

public class OperationCanceledTest : PerfTest<PerfOptions>
{
public OperationCanceledTest(PerfOptions options) : base(options)
{
}

public override void Run(CancellationToken cancellationToken)
{
throw new OperationCanceledException();
}

public override Task RunAsync(CancellationToken cancellationToken)
{
throw new OperationCanceledException();
}
}
}
17 changes: 14 additions & 3 deletions common/Perf/Azure.Test.Perf/PerfProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,16 @@ private static void RunLoop(IPerfTest test, int index, bool latency, Cancellatio
_lastCompletionTimes[index] = sw.Elapsed;
}
}
catch (OperationCanceledException)
catch (Exception e)
{
if (cancellationToken.IsCancellationRequested && PerfStressUtilities.ContainsOperationCanceledException(e))
{
// If the test has been canceled, ignore if any part of the exception chain is OperationCanceledException.
}
else
{
throw;
}
}
}

Expand Down Expand Up @@ -484,8 +492,11 @@ private static async Task RunLoopAsync(IPerfTest test, int index, bool latency,
}
catch (Exception e)
{
// Ignore if any part of the exception chain is type OperationCanceledException
if (!PerfStressUtilities.ContainsOperationCanceledException(e))
if (cancellationToken.IsCancellationRequested && PerfStressUtilities.ContainsOperationCanceledException(e))
{
// If the test has been canceled, ignore if any part of the exception chain is OperationCanceledException.
}
else
{
throw;
}
Expand Down
1 change: 1 addition & 0 deletions eng/.docsettings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ known_content_issues:
- ['sdk/extensions/Azure.Extensions.AspNetCore.Configuration.Secrets/README.md', 'azure-sdk-tools/issues/404']
- ['sdk/extensions/Microsoft.Azure.WebJobs.Extensions.Clients/README.md','azure-sdk-tools/issues/404']
- ['sdk/extensions/Microsoft.Extensions.Azure/README.md','#5499']
- ['sdk/eventgrid/README.md','azure-sdk-tools/issues/42']
- ['sdk/eventgrid/Microsoft.Azure.Messaging.EventGrid.CloudNativeCloudEvents/README.md', '#15423']
- ['sdk/eventhub/README.md','azure-sdk-tools/issues/42']
- ['sdk/search/README.md','azure-sdk-tools/issues/42']
Expand Down
Loading

0 comments on commit b7f85d5

Please sign in to comment.