You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.
In class EnricherManager, the enricher method calls enricher.create() instead of enricher.enrich() see https://github.com/fabric8io/fabric8-maven-plugin/blob/master/plugin/src/main/java/io/fabric8/maven/plugin/enricher/EnricherManager.java#L98
Consequently, the create() method is called twice.
Suggested fix: replace
enricher.create(platformMode, builder);
withenricher.enrich(platformMode, builder);
It is related to this commit : b3c6060
The text was updated successfully, but these errors were encountered: