Repository: nifi Updated Branches: refs/heads/0.x ffe422f4d -> efa24a7ed
NIFI-1925 Fixed typo This closes #468 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/efa24a7e Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/efa24a7e Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/efa24a7e Branch: refs/heads/0.x Commit: efa24a7edaa93b935b4d6db6e20cbcc80df49bc9 Parents: ffe422f Author: Simon Elliston Ball <[email protected]> Authored: Thu May 26 11:07:11 2016 +0100 Committer: Oleg Zhurakousky <[email protected]> Committed: Mon Jun 6 10:38:22 2016 -0400 ---------------------------------------------------------------------- .../org/apache/nifi/provenance/PersistentProvenanceRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/efa24a7e/nifi-nar-bundles/nifi-provenance-repository-bundle/nifi-persistent-provenance-repository/src/main/java/org/apache/nifi/provenance/PersistentProvenanceRepository.java ---------------------------------------------------------------------- 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 3d24d11..0c830a7 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 @@ public class PersistentProvenanceRepository implements ProvenanceEventRepository 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();
