diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-03-06 07:56:05 +0100 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-06-04 16:43:22 +0200 |
commit | 9034ac68d20e1cb9f9aeda9ed8445023fca92527 (patch) | |
tree | d8520cd4ddd128b5bda15284680a2af84d14eebc /aai-schema-ingest | |
parent | 17cf0fc2bd8ead53beadafe0fda7605fbb27f618 (diff) |
Update janusgraph to 0.3.3
- update tinkerpop version from 3.2.11 to 3.3.0
- update janusgraph from 0.2.3 to 0.3.3
- the default GraphSON version would change with this update but was held back [1]
- add jackson-dataformat-xml dependency to aai-core as the XmlMapper is used in the ErrorLogHelper
[1] a separate story AAI-3796 - Use GraphSON v2 or v3 in AAI has been created for this
Issue-ID: AAI-3795
Change-Id: I4539e83aa74c260d5238ebe869e9884d4396e9f4
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'aai-schema-ingest')
-rw-r--r-- | aai-schema-ingest/pom.xml | 2 | ||||
-rw-r--r-- | aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/aai-schema-ingest/pom.xml b/aai-schema-ingest/pom.xml index dd83c92c..ef9793a9 100644 --- a/aai-schema-ingest/pom.xml +++ b/aai-schema-ingest/pom.xml @@ -26,7 +26,7 @@ limitations under the License. <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-parent</artifactId> - <version>1.13.6-SNAPSHOT</version> + <version>1.14.0-SNAPSHOT</version> <relativePath>../aai-parent/pom.xml</relativePath> </parent> <artifactId>aai-schema-ingest</artifactId> diff --git a/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java b/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java index a3d477ee..cf278060 100644 --- a/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java +++ b/aai-schema-ingest/src/main/java/org/onap/aai/nodes/NodeIngestor.java @@ -140,6 +140,7 @@ public class NodeIngestor { schemaPerVersion.put(version, createCombinedSchema(inputStreams, version, retrieveLocalSchema)); } } catch (JAXBException | ParserConfigurationException | SAXException | IOException e) { + LOGGER.error("Schema ingestion failed", e); throw new ExceptionInInitializerError(e); } } |