Skip to content

Commit

Permalink
domain/infosync: edit getTopologyInfo and Try to fix dashboard vers…
Browse files Browse the repository at this point in the history
…ion. (pingcap#15438)
  • Loading branch information
mapleFU authored Mar 18, 2020
1 parent 28869fa commit 34a123a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions domain/infosync/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,12 @@ func (is *InfoSyncer) getTopologyInfo() topologyInfo {
s = ""
}
return topologyInfo{
ServerVersionInfo: is.info.ServerVersionInfo,
StatusPort: is.info.StatusPort,
BinaryPath: s,
ServerVersionInfo: ServerVersionInfo{
Version: mysql.TiDBReleaseVersion,
GitHash: is.info.ServerVersionInfo.GitHash,
},
StatusPort: is.info.StatusPort,
BinaryPath: s,
}
}

Expand Down

0 comments on commit 34a123a

Please sign in to comment.