weed master: redirect to leader for default admin UI

fix https://github.com/chrislusf/seaweedfs/issues/898
This commit is contained in:
Chris Lu
2019-03-25 09:20:05 -07:00
parent eaa42c3865
commit a32797518b
2 changed files with 2 additions and 2 deletions

View File

@@ -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="http://{{ $p.Name }}">{{ $p.Name }}</a></li>
<li><a href="http://{{ $p.Name }}/ui/index.html">{{ $p.Name }}</a></li>
{{ end }}
</ul></td>
</tr>