fix: stale doc comment and unescaped service connection name#229
fix: stale doc comment and unescaped service connection name#229jamesadevine wants to merge 1 commit into
Conversation
- Remove orphaned schedule doc comment accidentally prepended to generate_parameters() during earlier refactoring - Escape single quotes in service connection names when emitting azureSubscription YAML values to prevent malformed pipeline output Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Closing — changes were applied to the wrong branch. Moving to unify-compilers PR #226. |
🔍 Rust PR ReviewSummary: Looks good — both fixes are correct, but the escaping change is missing a regression test. Findings
|
Two small fixes:
Stale doc comment (
common.rs:84-85): Removed orphanedgenerate_scheduledoc lines that were accidentally prepended to thegenerate_parameters()doc comment.Service connection YAML escaping (
common.rs:901): TheazureSubscriptionvalue ingenerate_acquire_ado_token()now escapes single quotes (''in YAML) to prevent malformed pipeline output if a service connection name contains a quote character.Ref: issue #228 created for the separate
resolve-pr-threadnaming inconsistency.