Eric Wittmann created SRAMP-443:
-----------------------------------
Summary: The Teiid model deriver is not being used
Key: SRAMP-443
URL:
https://issues.jboss.org/browse/SRAMP-443
Project: S-RAMP
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Core
Affects Versions: 0.4.0 - Tomcat Support
Reporter: Eric Wittmann
Assignee: Brett Meyer
Fix For: 0.5.0.Final
The org.overlord.sramp.integration.teiid.deriver.ModelDeriverProvider class is not
providing the correct deriver. I think this class was copy/pasted and never changed to
return the correct provider type.
I think we just need to change from this:
{code}
return Collections.singletonMap(TeiidArtifactType.MODEL.extendedType(),
(ArtifactDeriver)new VdbManifestDeriver());
{code}
to this:
{code}
return Collections.singletonMap(TeiidArtifactType.MODEL.extendedType(),
(ArtifactDeriver)new ModelDeriver());
{code}
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)