Skip to content

Commit

Permalink
reverted failedVariantEntries condition check
Browse files Browse the repository at this point in the history
  • Loading branch information
aman19K committed Nov 25, 2024
1 parent 2e04cc3 commit 3584d48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export default class VariantEntries extends VariantAdapter<VariantHttpClient<Imp
continue;
}

if (!this.failedVariantEntries.has(variantEntryUID)) {
if (this.failedVariantEntries.has(variantEntryUID)) {
log(
this.config,
`${this.messages.VARIANT_UID_NOT_FOUND}. Skipping entry variant publish for ${variantEntryUID}`,
Expand Down

0 comments on commit 3584d48

Please sign in to comment.