Disable pointer-compression by default on serverless (#186097)

## Summary
Disables pointer compression by default. Supposed to fix incident 490.

Was introduced in https://github.com/elastic/kibana/pull/184675
This commit is contained in:
Alex Szabo 2024-06-12 18:14:40 +02:00 committed by GitHub
parent 4da9ae2f1d
commit cf768dcb71
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ NODE="${DIR}/node/default/bin/node"
{{#linux}}
NODE="${DIR}/node/glibc-217/bin/node"
{{#serverless}}
if [ "$KBN_DISABLE_POINTER_COMPRESSION" != 'true' ]; then
if [ "$KBN_ENABLE_POINTER_COMPRESSION" = 'true' ]; then
NODE="${DIR}/node/pointer-compression/bin/node"
fi
{{/serverless}}