You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting 'timeout_disable_debugger_detection' to true in the ini file has no effect.
How to reproduce:
Set timeout_disable_debugger_detection to true in the ini file
Launch with debugger attached -> the timeout is ignored
It seems config.getvalue("timeout_disable_debugger_detection") in get_env_settings(config) always returns False and therefore the value in the ini file is never checked.
My suspicion is that the addoption of timeout_disable_debugger_detection initializes the variable to False if not specified (e.g store_false)