File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
packages/cli-v3/src/entryPoints/managed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const Env = z.object({
1818 TRIGGER_PROJECT_REF : z . string ( ) ,
1919 NODE_ENV : z . string ( ) . default ( "production" ) ,
2020 NODE_EXTRA_CA_CERTS : z . string ( ) . optional ( ) ,
21+ UV_USE_IO_URING : z . string ( ) . optional ( ) ,
2122
2223 // Set at runtime
2324 TRIGGER_WORKLOAD_CONTROLLER_ID : z . string ( ) . default ( `controller_${ randomUUID ( ) } ` ) ,
@@ -70,6 +71,9 @@ export class RunnerEnv {
7071 get NODE_EXTRA_CA_CERTS ( ) {
7172 return this . env . NODE_EXTRA_CA_CERTS ;
7273 }
74+ get UV_USE_IO_URING ( ) {
75+ return this . env . UV_USE_IO_URING ;
76+ }
7377 get OTEL_EXPORTER_OTLP_ENDPOINT ( ) {
7478 return this . env . OTEL_EXPORTER_OTLP_ENDPOINT ;
7579 }
@@ -217,6 +221,7 @@ export class RunnerEnv {
217221 NODE_ENV : this . NODE_ENV ,
218222 NODE_EXTRA_CA_CERTS : this . NODE_EXTRA_CA_CERTS ,
219223 OTEL_EXPORTER_OTLP_ENDPOINT : this . OTEL_EXPORTER_OTLP_ENDPOINT ,
224+ UV_USE_IO_URING : this . UV_USE_IO_URING ,
220225 } ;
221226
222227 // Filter out undefined values
You can’t perform that action at this time.
0 commit comments