From 243494c1785a99ad714d3ce67e6e5270c4afe8e6 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Wed, 15 May 2024 11:38:47 +0200 Subject: [PATCH] set UV_USE_IO_URING in code server for linux (#212791) --- resources/server/bin/code-server-linux.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/server/bin/code-server-linux.sh b/resources/server/bin/code-server-linux.sh index 3df32dfd43c..3d8881ee601 100644 --- a/resources/server/bin/code-server-linux.sh +++ b/resources/server/bin/code-server-linux.sh @@ -9,4 +9,6 @@ esac ROOT="$(dirname "$(dirname "$(readlink -f "$0")")")" +export UV_USE_IO_URING=0 # workaround for https://github.com/microsoft/vscode/issues/212678 + "$ROOT/node" ${INSPECT:-} "$ROOT/out/server-main.js" "$@"