summaryrefslogtreecommitdiff
path: root/memcached.c
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2022-12-13 12:48:14 -0800
committerdormando <dormando@rydia.net>2022-12-13 12:48:14 -0800
commit8b98647d1ad80dee3ddb49dfc51cd7bd07fe9297 (patch)
tree3a12dd2af7f5de130a1fd0034d80716416c7685b /memcached.c
parentd401611ba88db17c38fedf97d336f8085ce24bab (diff)
downloadmemcached-8b98647d1ad80dee3ddb49dfc51cd7bd07fe9297.tar.gz
proxy: make io_uring backend work again
updates the io_uring code to match the updates on the libevent side. needs more work before merge: - auditing error conditions - try harder for some code deduplication
Diffstat (limited to 'memcached.c')
-rw-r--r--memcached.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/memcached.c b/memcached.c
index e949b09..1eabd0a 100644
--- a/memcached.c
+++ b/memcached.c
@@ -5639,9 +5639,7 @@ int main (int argc, char **argv) {
protocol_specified = true;
break;
case PROXY_URING:
- fprintf(stderr, "Proxy io-uring mode is not presently supported\n");
- return 1;
- //settings.proxy_uring = true;
+ settings.proxy_uring = true;
break;
#endif
#ifdef MEMCACHED_DEBUG