Repository: nifi Updated Branches: refs/heads/master c090cdf29 -> 55d32ae61
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/55d32ae6 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/55d32ae6 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/55d32ae6 Branch: refs/heads/master Commit: 55d32ae61013f368424bfe286ec86a1a1b25b5b5 Parents: c090cdf 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:33:28 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/55d32ae6/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();
