Skip to content

Commit

Permalink
Merge pull request #121 from AlexandreCarlton/copy-over-value-cache-i…
Browse files Browse the repository at this point in the history
…n-options

Copy across valueCache in DataLoaderOptions copy constructor
  • Loading branch information
bbakerman authored Jul 16, 2022
2 parents 7a59ead + fc2bfaa commit 59b26b8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/dataloader/DataLoaderOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public DataLoaderOptions(DataLoaderOptions other) {
this.cachingExceptionsEnabled = other.cachingExceptionsEnabled;
this.cacheKeyFunction = other.cacheKeyFunction;
this.cacheMap = other.cacheMap;
this.valueCache = other.valueCache;
this.maxBatchSize = other.maxBatchSize;
this.statisticsCollector = other.statisticsCollector;
this.environmentProvider = other.environmentProvider;
Expand Down

0 comments on commit 59b26b8

Please sign in to comment.