Skip to content
Snippets Groups Projects
Unverified Commit f94bbdab authored by Konstantin Antselovich's avatar Konstantin Antselovich Committed by GitHub
Browse files

Disable jemalloc via specific ENV variable, see Issue#36237 (#36274)

parent 5f4fdaa1
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,11 @@
# ==============================================================================
# Start Home Assistant service
# ==============================================================================
cd /config || bashio::exit.nok "Can't find config folder!"
# Enable Jemalloc for Home Assistant Core
export LD_PRELOAD="/usr/local/lib/libjemalloc.so.2"
cd /config || bashio::exit.nok "Can't find config folder!"
# Enable Jemalloc for Home Assistant Core, unless disabled
if [[ -z "${DISABLE_JEMALLOC+x}" ]]; then
export LD_PRELOAD="/usr/local/lib/libjemalloc.so.2"
fi
exec python3 -m homeassistant --config /config
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment