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
SPI currently calls getenv() repeatedly during instrumentation instead of storing variables at start.
Additionally, getenv("X") should be replaced with getenv_bool("X"), defined as not (undefined v || v is "" || v is "0" || v is "false"). This checks for environment variable values instead of just definition, making configuration more user-friendly.
The text was updated successfully, but these errors were encountered:
SPI currently calls
getenv()
repeatedly during instrumentation instead of storing variables at start.Additionally,
getenv("X")
should be replaced withgetenv_bool("X")
, defined asnot (undefined v || v is "" || v is "0" || v is "false")
. This checks for environment variable values instead of just definition, making configuration more user-friendly.The text was updated successfully, but these errors were encountered: