Skip to content

Commit

Permalink
Merge pull request #603 from 15911075183ma/fix-version-error-displayed
Browse files Browse the repository at this point in the history
fix: 前端版本展示错误修复
  • Loading branch information
15911075183ma authored Nov 21, 2023
2 parents bde6978 + 5221756 commit 4c360f6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ private String generateAgentRegisterMsg() {
object.put("uuid", uuid);
}
object.put("name", AgentRegisterReport.getAgentToken());
object.put("version", Version.VERSION);
//web端展示会截取v符号,历史因素
object.put("version","v" + Version.VERSION);
object.put("projectName", getProjectName());
object.put("clusterName", getClusterName());
object.put("clusterVersion", getClusterVersion());
Expand Down

0 comments on commit 4c360f6

Please sign in to comment.