NIFI-1925 Fixed typo

This closes #468
This commit is contained in:
Simon Elliston Ball 2016-05-26 11:07:11 +01:00 committed by Oleg Zhurakousky
parent c090cdf29a
commit 55d32ae610
1 changed files with 1 additions and 1 deletions

View File

@ -672,7 +672,7 @@ public class PersistentProvenanceRepository implements ProvenanceEventRepository
final int numDirty = dirtyWriterCount.get(); final int numDirty = dirtyWriterCount.get();
if (numDirty >= recordWriters.length) { 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. " 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(); final long idx = writerIndex.getAndIncrement();