/api/apply-relaylog-contents is POST

This commit is contained in:
Shlomi Noach 2017-01-02 15:08:51 +02:00
Родитель 5669c0f033
Коммит a2f396900d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -628,7 +628,7 @@ func (this *HttpAPI) RegisterRequests(m *martini.ClassicMartini) {
m.Get("/api/mysql-binlog-contents", this.BinlogContents)
m.Get("/api/mysql-binlog-binary-contents", this.BinlogBinaryContents)
m.Get("/api/mysql-relaylog-contents-tail/:relaylog/:start", this.RelaylogContentsTail)
m.Get("/api/apply-relaylog-contents", this.ApplyRelaylogContents)
m.Post("/api/apply-relaylog-contents", this.ApplyRelaylogContents)
m.Get("/api/custom-commands/:cmd", this.RunCommand)
m.Get(config.Config.StatusEndpoint, this.Status)