Fix static list member cutoff in clone program doc#73
Closed
ZLeventer wants to merge 1 commit into
Closed
Conversation
The actual cutoff for carrying over static list members when cloning a program is 1001, not 1000. A list with 1000 members will still carry over; only lists exceeding 1000 are cloned empty. Confirmed by Adobe Marketo TSE in issue AdobeDocs#58. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author
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
Fixes #58 — corrects the static list member cutoff threshold in the "Clone a Program" documentation.
Before: States lists with "1000 or more" people are cloned empty, and "999 or less" carry over.
After: States lists with "more than 1000" people are cloned empty, and "1000 or less" carry over.
As confirmed by @lbeasley-adobe (Adobe Marketo TSE) in #58, the actual behavior is that a static list with exactly 1000 members does carry over when cloning. The cutoff for an empty clone is 1001+.
Test plan