Skip to content

Commit 686dcf7

Browse files
committed
Switch Rewrite cache from RocksDB to in Memory as concurrent access was failing in tests
1 parent 80ef25d commit 686dcf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/sbm-core/src/main/java/org/springframework/sbm/build/migration/MavenPomCacheProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class MavenPomCacheProvider {
3434

3535
@PostConstruct
3636
void postConstruct() {
37-
pomCache = rocksdb(); // mapdb();
37+
pomCache = inMemory(); //rocksdb(); // mapdb();
3838
}
3939

4040
public MavenPomCache getPomCache() {

0 commit comments

Comments
 (0)