[MTE-153] Supplied variation [null] could not be found Created: 21/Nov/23 Updated: 28/Nov/23 |
|
| Status: | Open |
| Project: | Magnolia Templating Essentials |
| Component/s: | imaging |
| Affects Version/s: | 2.0.3 |
| Fix Version/s: | None |
| Type: | Improvement | Priority: | Neutral |
| Reporter: | Richard Gange | Assignee: | Unassigned |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Issue Links: |
|
||||||||
| Template: |
|
||||||||
| Acceptance criteria: |
Empty
|
||||||||
| Task DoD: |
[ ]*
Doc/release notes changes? Comment present?
[ ]*
Downstream builds green?
[ ]*
Solution information and context easily available?
[ ]*
Tests
[ ]*
FixVersion filled and not yet released
[ ] 
Architecture Decision Record (ADR)
|
||||||||
| Epic Link: | Support | ||||||||
| Team: | |||||||||
| Description |
|
In the class VariationAwareImagingSupport if the local variable "variationName" is null the code simply prints "Supplied variation [null] could not be found. Please update your configuration." It would be helpful to know what property it was trying to use at the time. In the context of support someone can give us the feedback --> "I'm seeing this in my log":
2023-07-03 10:36:11 2023-11-17 17:22:02,650 WARN ia.templating.imaging.VariationAwareImagingSupport: Supplied variation [null] could not be found. Please update your configuration.
Notes @Override
public String createLink(Property binaryProperty, String variationName) {
if (isEnabled() && !ImagingSupport.VARIATION_ORIGINAL.equals(variationName)) {
if (variations.containsKey(variationName)) {
return variations.get(variationName).createLink(binaryProperty);
} else {
log.warn("Supplied variation [{}] could not be found. Please update your configuration.", variationName);
}
}
return createLink(binaryProperty);
}
|