forked from Qortal/qortal
Always overwrite existing data when building via the queue.
This fixes a significant bug that was interfering with updates.
This commit is contained in:
parent
16bcba6e2e
commit
6f07dc7852
@ -40,10 +40,8 @@ public class ArbitraryDataBuildQueueItem {
|
||||
ArbitraryDataReader arbitraryDataReader =
|
||||
new ArbitraryDataReader(this.resourceId, this.resourceIdType, this.service);
|
||||
|
||||
// We do not want to overwrite the existing cache, as this will be invalidated
|
||||
// automatically if new data has arrived
|
||||
try {
|
||||
arbitraryDataReader.loadSynchronously(false);
|
||||
arbitraryDataReader.loadSynchronously(true);
|
||||
} finally {
|
||||
this.buildEndTimestamp = NTP.getTime();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user