From 10b9a2465d402ab2d1c4ca0541be9ed28bc2c579 Mon Sep 17 00:00:00 2001 From: Greg Greenway Date: Tue, 2 Nov 2021 13:36:40 -0700 Subject: [PATCH] Fix crash-on-startup on macOS 12 (#18779) (#18864) gperftools_tcmalloc is not compatible with macOS 12, resulting in a crash on startup. The crash happens very early, before CLI args are parsed. Fixes #17535 (cherry picked from commit b9939c6f8045b12b98933ffdf3d9f2eacd9cf38e) Signed-off-by: Greg Greenway --- docs/root/version_history/current.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/root/version_history/current.rst b/docs/root/version_history/current.rst index b1f9bc49f83e..db4d321e6d6d 100644 --- a/docs/root/version_history/current.rst +++ b/docs/root/version_history/current.rst @@ -42,6 +42,7 @@ Bug Fixes * http: remove redundant Warn log in HTTP codec. * listener: fix a crash when updating any listener that does not bind to port. * listener: listener add can reuse the listener socket of a draining filter chain listener and fix the request lost. +* mac: fix crash on startup on macOS 12 by changing the default allocator. Removed Config or Runtime -------------------------