fix(hana-cloud-ecn): repair malformed tags frontmatter list - #24228
Merged
Merged
Conversation
e70c6db turned the YAML tags list into a bare string (missing opening [, duplicate software-product>sap-hana-cloud, stray trailing ]). The parser's tags.map() then threw 'tags.map is not a function', dropping the tutorial from the build and blocking content rebuild/publish. Restores the known-good list from parent commit 60d6705.
Contributor
Markdown (6)
Content (1)
Checked 1fcdcbf • notify-only, does not block merge |
Contributor
Author
|
Mirrored to the Contribution working copy: sap-tutorials/Tutorials-Contribution#42161 (keeps them in sync so the fix isn't re-introduced on promotion). |
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.
Problem
Commit e70c6db ("Updates to the SAP HANA Client tutorials", 2026-09-14) corrupted the
tagsfrontmatter ofhana-cloud-ecn:Missing opening
[, a duplicatedsoftware-product>sap-hana-cloud(already theprimary_tag), and a stray trailing]. YAML parses this as a string, so the portal parser'stags.map()throwstags.map is not a function, the tutorial is dropped from the build, and the content-rebuild guard fails — the tutorial can no longer be published (prod serves stale content; nightly content-drift check fails).Fix
Restore the known-good list from the parent commit (60d6705):
One-line frontmatter fix, no content change.
Detected by the scheduled content-drift check (run 35421247052).