()
| 2252 | } |
| 2253 | |
| 2254 | func (h *handler) getReplicationsStatus() error { |
| 2255 | replicationsStatus, err := h.db.SGReplicateMgr.GetReplicationStatusAll(h.ctx(), h.getReplicationStatusOptions()) |
| 2256 | if err != nil { |
| 2257 | return err |
| 2258 | } |
| 2259 | base.Audit(h.ctx(), base.AuditIDISGRAllStatus, nil) |
| 2260 | h.writeJSON(replicationsStatus) |
| 2261 | return nil |
| 2262 | } |
| 2263 | |
| 2264 | func (h *handler) getReplicationStatus() error { |
| 2265 | replicationID := mux.Vars(h.rq)["replicationID"] |
nothing calls this directly
no test coverage detected