summaryrefslogtreecommitdiff
path: root/proxy_request.c
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2023-03-15 14:36:28 -0700
committerdormando <dormando@rydia.net>2023-03-26 16:48:37 -0700
commitf4f273f6eb1c62d0162df8795933d63b85ce1334 (patch)
tree15359be9526862f2c1d24f30a40d1f41025b3a38 /proxy_request.c
parent595758ad02ac3ab57ae981c9d736563812861eaf (diff)
downloadmemcached-f4f273f6eb1c62d0162df8795933d63b85ce1334.tar.gz
proxy: some TODO/FIXME updates
rest seem honestly reasonable. no huge red flags anymore.
Diffstat (limited to 'proxy_request.c')
-rw-r--r--proxy_request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proxy_request.c b/proxy_request.c
index c72fed2..184a00f 100644
--- a/proxy_request.c
+++ b/proxy_request.c
@@ -587,7 +587,7 @@ int mcplib_request(lua_State *L) {
proxy_lua_error(L, "failed to allocate value memory for request object");
}
memcpy(rq->pr.vbuf, val, vlen);
- // Note: Not enforcing the memory limit here as a bit of a choice:
+ // Note: Not enforcing the memory limit here is deliberate:
// - if we're over the memory limit, it'll get caught very soon after
// this, but we won't be causing some lua to bail mid-flight, which is
// more graceful to the end user.