fix: recover PR #374 changes (Common breaker adapter)#375
Merged
RicherTunes merged 2 commits intomainfrom Jan 17, 2026
Merged
Conversation
…ker (WS4.2 PR2) (#374) * feat(resilience): adapt Brainarr breaker to Common AdvancedCircuitBreaker * test(resilience): update DI seam tests for CommonBreakerRegistry * test(orchestrator): inject breaker registry in direct-construction tests * test(orchestrator): inject breaker registry in remaining direct-construction tests * test(orchestrator): add breaker registry injection tripwires * fix(ci): prevent flaky file-locking in dotnet test Root cause: Pre-test cleanup was deleting bin/obj directories, forcing dotnet test to rebuild. This caused parallel MSBuild file locking on Common submodule's .deps.json files. Fix: - Remove `rm -rf Brainarr.Tests/bin Brainarr.Tests/obj` from pre-test cleanup - Add `--no-build` to all dotnet test commands (Linux unit, Linux provider-contract, Windows unit) This ensures tests use pre-built binaries from the Build step, eliminating rebuild-induced file contention. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * ci: reduce transient dotnet file-lock failures in Test and Coverage * fix(ci): remove trailing whitespace breaking dotnet test command The backslash followed by trailing spaces on line 136 caused bash to pass extra arguments to MSBuild, triggering MSB1008 "Only one project can be specified" error. Also cleaned up excessive spacing in other test commands. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2b26347 to
b71e746
Compare
RicherTunes
added a commit
that referenced
this pull request
Feb 17, 2026
Picks up: - #383: fix(ci): Windows credential issue in change detection step - #367: deps: coverlet.collector 6.0.4 → 8.0.0 - #370: deps: publicapigenerator.tool 11.4.6 → 11.5.4 - #371: deps: Spectre.Console 0.50.0 → 0.54.0 - #375: deps: xunit 2.9.2 → 2.9.3 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2 tasks
RicherTunes
added a commit
that referenced
this pull request
Feb 17, 2026
Picks up: - #383: fix(ci): Windows credential issue in change detection step - #367: deps: coverlet.collector 6.0.4 → 8.0.0 - #370: deps: publicapigenerator.tool 11.4.6 → 11.5.4 - #371: deps: Spectre.Console 0.50.0 → 0.54.0 - #375: deps: xunit 2.9.2 → 2.9.3 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
RicherTunes
added a commit
that referenced
this pull request
Feb 17, 2026
Picks up: - #383: fix(ci): Windows credential issue in change detection step - #367: deps: coverlet.collector 6.0.4 → 8.0.0 - #370: deps: publicapigenerator.tool 11.4.6 → 11.5.4 - #371: deps: Spectre.Console 0.50.0 → 0.54.0 - #375: deps: xunit 2.9.2 → 2.9.3 Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
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
PR #374 was targeting
feat/breaker-registry-seamwhich was merged into main moments before #374 was merged. This caused the #374 changes to be orphaned.This PR recovers those changes by cherry-picking commit 22a7da3.
Changes recovered
BrainarrCircuitBreakerAdapter.cs- adapter to Common's AdvancedCircuitBreakerCommonBreakerRegistry.cs- registry using Common's breakerBrainarrOrchestratorFactory.csto use new registryBreakerRegistryInjectionTests.cs🤖 Generated with Claude Code