Skip to content

Commit

Permalink
Merge pull request #1516 from forcedotcom/jj/W-15639963
Browse files Browse the repository at this point in the history
FIX (GraphEngine): @W-15639963@: Switching the sfge caching to be disabled by default
  • Loading branch information
jag-j authored Jun 21, 2024
2 parents 762d652 + c714f18 commit 91d230b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sfge/src/main/java/com/salesforce/config/EnvUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public final class EnvUtil {

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

@VisibleForTesting static final boolean DEFAULT_DISABLE_CACHING = false;
@VisibleForTesting static final boolean DEFAULT_DISABLE_CACHING = true;


/**
Expand Down
3 changes: 3 additions & 0 deletions sfge/src/test/java/com/salesforce/cli/CacheCreatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ void setUp() {
public String getFilesToEntriesCacheLocation() {
return DUMMY_FILE_NAME;
}
public boolean isCachingDisabled() {
return false;
}
});
}

Expand Down

0 comments on commit 91d230b

Please sign in to comment.