Basic implementation of /commit, /version, and /status

No precondition checking, persistence, or log scanning yet.
This commit is contained in:
2025-09-04 15:40:17 -04:00
parent 8b6736127a
commit 96aae52853
5 changed files with 475 additions and 148 deletions

View File

@@ -209,7 +209,7 @@ struct Connection {
* metrics.recordQueueDepth(conn->get_id(), conn->outgoingBytesQueued());
* ```
*/
int64_t outgoingBytesQueued() const {
int64_t outgoing_bytes_queued() const {
#ifndef NDEBUG
// Debug build: validate counter accuracy
int64_t computed_total = 0;