diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-02-18 22:38:14 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-02-18 22:38:14 -0800 |
| commit | 07af52cb6fefc0ebf00a5b3c4223e2f861755560 (patch) | |
| tree | 9e1c65f0705f6f8c036c2fc5943fb72fd44cb72c /weed/server/master_ui | |
| parent | 448645203aa8478c83a0376a4b229ad1405839d0 (diff) | |
| download | seaweedfs-07af52cb6fefc0ebf00a5b3c4223e2f861755560.tar.xz seaweedfs-07af52cb6fefc0ebf00a5b3c4223e2f861755560.zip | |
raft change from http to grpc
master grpc port is fixed to http port + 10000
Diffstat (limited to 'weed/server/master_ui')
| -rw-r--r-- | weed/server/master_ui/templates.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/server/master_ui/templates.go b/weed/server/master_ui/templates.go index f32e8e61b..ce632b099 100644 --- a/weed/server/master_ui/templates.go +++ b/weed/server/master_ui/templates.go @@ -41,7 +41,7 @@ var StatusTpl = template.Must(template.New("status").Parse(`<!DOCTYPE html> <td class="col-sm-2 field-label"><label>Other Masters:</label></td> <td class="col-sm-10"><ul class="list-unstyled"> {{ range $k, $p := .Peers }} - <li><a href="{{ $p.ConnectionString }}">{{ $p.Name }}</a></li> + <li><a href="http://{{ $p.Name }}">{{ $p.Name }}</a></li> {{ end }} </ul></td> </tr> |
