Skip to content

Commit c714f18

Browse files
committed
FIX (GraphEngine): @W-15639963@: Switching the sfge caching to be disabled by default
1 parent 762d652 commit c714f18

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

sfge/src/main/java/com/salesforce/config/EnvUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public final class EnvUtil {
4141

4242
@VisibleForTesting static final String DEFAULT_FILES_TO_ENTRIES_CACHE_LOCATION = ".sfge-cache" + File.separator + "fileToEntryMapData.json";
4343

44-
@VisibleForTesting static final boolean DEFAULT_DISABLE_CACHING = false;
44+
@VisibleForTesting static final boolean DEFAULT_DISABLE_CACHING = true;
4545

4646

4747
/**

sfge/src/test/java/com/salesforce/cli/CacheCreatorTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ void setUp() {
3333
public String getFilesToEntriesCacheLocation() {
3434
return DUMMY_FILE_NAME;
3535
}
36+
public boolean isCachingDisabled() {
37+
return false;
38+
}
3639
});
3740
}
3841

0 commit comments

Comments
 (0)