()
| 547 | } |
| 548 | |
| 549 | func (h *handler) handleEFC() error { // Handles _ensure_full_commit. |
| 550 | // no-op. CouchDB's replicator sends this, so don't barf. Status must be 201. |
| 551 | h.writeRawJSONStatus(http.StatusCreated, []byte(`{"instance_start_time":`+strconv.FormatInt(h.instanceStartTimeMicro(), 10)+`,"ok":true}`)) |
| 552 | return nil |
| 553 | } |
| 554 | |
| 555 | // ADMIN API to turn Go CPU profiling on/off |
| 556 | func (h *handler) handleProfiling() (err error) { |
nothing calls this directly
no test coverage detected