From 41b71e5322fa579f7a115956ac2e9fdd2255bf0c Mon Sep 17 00:00:00 2001 From: Simon Elliston Ball Date: Thu, 26 May 2016 11:07:11 +0100 Subject: [PATCH] Fixed typo --- .../apache/nifi/provenance/PersistentProvenanceRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nifi-nar-bundles/nifi-provenance-repository-bundle/nifi-persistent-provenance-repository/src/main/java/org/apache/nifi/provenance/PersistentProvenanceRepository.java b/nifi-nar-bundles/nifi-provenance-repository-bundle/nifi-persistent-provenance-repository/src/main/java/org/apache/nifi/provenance/PersistentProvenanceRepository.java index 3d24d1138557..0c830a7554dc 100644 --- a/nifi-nar-bundles/nifi-provenance-repository-bundle/nifi-persistent-provenance-repository/src/main/java/org/apache/nifi/provenance/PersistentProvenanceRepository.java +++ b/nifi-nar-bundles/nifi-provenance-repository-bundle/nifi-persistent-provenance-repository/src/main/java/org/apache/nifi/provenance/PersistentProvenanceRepository.java @@ -672,7 +672,7 @@ private void persistRecord(final Iterable records) { final int numDirty = dirtyWriterCount.get(); if (numDirty >= recordWriters.length) { throw new IllegalStateException("Cannot update repository because all partitions are unusable at this time. Writing to the repository would cause corruption. " - + "This most often happens as a result of the repository running out of disk space or the JMV running out of memory."); + + "This most often happens as a result of the repository running out of disk space or the JVM running out of memory."); } final long idx = writerIndex.getAndIncrement();