Merge "Fix setting IRONIC_THREAD_STACK_SIZE"

This commit is contained in:
Zuul
2025-08-25 17:13:10 +00:00
committed by Gerrit Code Review

View File

@@ -26,5 +26,5 @@ from ironic.common import i18n # noqa
# any positive number with a minimum of 32768 Bytes, in 4096 Byte # any positive number with a minimum of 32768 Bytes, in 4096 Byte
# increments, this appears to work well in basic benchmarking. # increments, this appears to work well in basic benchmarking.
threading.stack_size( threading.stack_size(
os.environ.get('IRONIC_THREAD_STACK_SIZE', 65536)) int(os.environ.get('IRONIC_THREAD_STACK_SIZE', 65536)))
i18n.install('ironic') i18n.install('ironic')