Fix storing of read only flag

This commit is contained in:
Ann Priestman 2017-11-03 12:53:23 -04:00
parent 399b7a4b38
commit bca71afa70

View File

@ -363,7 +363,7 @@ final class HashLookupSettings implements Serializable {
this.hashSetName = centralRepoDb.getHashSetName();
this.version = centralRepoDb.getVersion();
this.knownFilesType = centralRepoDb.getKnownFilesType();
this.readOnly = centralRepoDb.isUpdateable();
this.readOnly = ! centralRepoDb.isUpdateable();
this.searchDuringIngest = centralRepoDb.getSearchDuringIngest();
this.sendIngestMessages = centralRepoDb.getSendIngestMessages();
this.path = "";