-
Notifications
You must be signed in to change notification settings - Fork 469
Worker termination path update #10367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7de0ffb
Sanitizing exception message
surgupta-msft 8e2f094
Sanitizer update for websocket scenario
surgupta-msft 062e992
Naming update
surgupta-msft 58f58c6
Simplifying pattern
surgupta-msft d7bece7
Cleaning up regex
surgupta-msft 56797fc
Updating tests
surgupta-msft 4c92092
Using generatedRegex feature
surgupta-msft c1ce9c4
Addressing PR feedback
surgupta-msft 74b2f3e
Updating condition
surgupta-msft 73b87a6
Updating release notes
surgupta-msft 4855e55
Updating test
surgupta-msft 8d3b517
Resolving release notes conflicts
surgupta-msft 5161dd4
Adding Perf benchmarks
surgupta-msft 9afbde2
Undo incorrect benchmark
surgupta-msft 28334e8
Remove ununsed usings
surgupta-msft b04b47a
Adding perf benchmarks
surgupta-msft cc3e9c5
Cleaning up
surgupta-msft 3f66040
Updating location of check
surgupta-msft bff9c92
Rebasing with dev branch
surgupta-msft 6eafdca
Remvoing redundant test
surgupta-msft 0d6e7b8
Updated release notes
surgupta-msft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
benchmarks/WebJobs.Script.Benchmarks/SanitizerBenchmarks.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
|
||
using BenchmarkDotNet.Attributes; | ||
using Microsoft.Azure.WebJobs.Logging; | ||
|
||
namespace Microsoft.Azure.WebJobs.Script.Benchmarks | ||
{ | ||
public class SanitizerBenchmarks | ||
{ | ||
[Benchmark] | ||
public void Sanitize() | ||
{ | ||
Sanitizer.Sanitize("testprotocol://name:password@address:1111"); | ||
} | ||
} | ||
} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.