refactor: Replace magic numbers with named constants#1470
Merged
Conversation
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Create LoggingConstants with SecretMask, CommandMask, and body size constants - Create ConcurrencyConstants with ParallelismMultiplier - Add TestFramework constant to BuildConstants - Update SecretObfuscator to use LoggingConstants.SecretMask - Update CommandLogger to use LoggingConstants.CommandMask - Update HttpLoggingOptions to use LoggingConstants for body size limits - Update ConcurrencyOptions to use ConcurrencyConstants.ParallelismMultiplier - Update RunUnitTestsModule to use BuildConstants.TestFramework Fixes #1457 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
SummaryThis PR replaces magic numbers with named constants across logging, concurrency, and test framework configuration. Critical IssuesNone found ✅ Suggestions
Verdict |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
LoggingConstantsclass withSecretMask,CommandMask,DefaultMaxBodySizeToLog, andFullLoggingMaxBodySizeconstantsConcurrencyConstantsclass withParallelismMultiplierconstantTestFrameworkconstant to existingBuildConstantsclassFiles Changed
Core Library (
src/ModularPipelines/):Constants/LoggingConstants.cs- New file with logging-related constantsConstants/ConcurrencyConstants.cs- New file with concurrency-related constantsEngine/SecretObfuscator.cs- UsesLoggingConstants.SecretMaskLogging/CommandLogger.cs- UsesLoggingConstants.CommandMaskOptions/HttpLoggingOptions.cs- UsesLoggingConstants.DefaultMaxBodySizeToLogandFullLoggingMaxBodySizeOptions/ConcurrencyOptions.cs- UsesConcurrencyConstants.ParallelismMultiplierBuild Project (
src/ModularPipelines.Build/):BuildConstants.cs- AddedTestFrameworkconstantModules/RunUnitTestsModule.cs- UsesBuildConstants.TestFrameworkTest plan
Fixes #1457
🤖 Generated with Claude Code