SERVER_ENABLE_VIRTUAL_THREAD is marked false (#23219)

(cherry picked from commit c97078a3fedc5b109b1f66dc6f53146e7659d4da)
This commit is contained in:
Ram Narayan Balaji 2025-09-03 15:55:04 +05:30 committed by Ram Narayan Balaji
parent 2278123942
commit eed2b40cb9

View File

@ -38,7 +38,7 @@ server:
maxThreads: ${SERVER_MAX_THREADS:-50}
minThreads: ${SERVER_MIN_THREADS:-10}
idleThreadTimeout: ${SERVER_IDLE_THREAD_TIMEOUT:-1 minute}
enableVirtualThreads: ${SERVER_ENABLE_VIRTUAL_THREAD:-true}
enableVirtualThreads: ${SERVER_ENABLE_VIRTUAL_THREAD:-false}
maxQueuedRequests: ${SERVER_REQUEST_QUEUE:-1024}
# Above configuration for running http is fine for dev and testing.