Skip to content

Commit

Permalink
fix: the issue that cache load fails to load is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
pangdayuan1 committed Sep 10, 2024
1 parent ae7f9fb commit 8074121
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,10 @@ private boolean getFromCompareRelation(String replayId) {
}

private boolean compareVersion(String replayAgentVersion) {
if (StringUtils.isEmpty(replayAgentVersion)) {
return false;
}

String agentVersion = applicationDefaultConfig.getConfigAsString(Constants.AGENT_VERSION, null);
if (StringUtils.isEmpty(agentVersion)) {
return false;
Expand Down

0 comments on commit 8074121

Please sign in to comment.