Skip to content

Commit 59b26b8

Browse files
authored
Merge pull request #121 from AlexandreCarlton/copy-over-value-cache-in-options
Copy across valueCache in DataLoaderOptions copy constructor
2 parents 7a59ead + fc2bfaa commit 59b26b8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/org/dataloader/DataLoaderOptions.java

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public DataLoaderOptions(DataLoaderOptions other) {
7272
this.cachingExceptionsEnabled = other.cachingExceptionsEnabled;
7373
this.cacheKeyFunction = other.cacheKeyFunction;
7474
this.cacheMap = other.cacheMap;
75+
this.valueCache = other.valueCache;
7576
this.maxBatchSize = other.maxBatchSize;
7677
this.statisticsCollector = other.statisticsCollector;
7778
this.environmentProvider = other.environmentProvider;

0 commit comments

Comments
 (0)