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
The origen site command reported that the use_bootsnap variable was set to false:
$ origen site env
...
use_bootsnap: false
...
However, when it was referenced by Origen code it returned true:
Origen.site_config.use_bootsnap# => true
The origen site env result did accurately reflect what was in the origen_site_config.yml files, however the site config system allows setting of these variables via environment variables, and it turns out that I had this in my .bashrc:
export ORIGEN_USE_BOOTSNAP=true
It looks like the origen site command needs to be updated to make it aware of environment variables so that it gives an accurate reflection of the runtime values.
The text was updated successfully, but these errors were encountered:
The
origen site
command reported that theuse_bootsnap
variable was set to false:However, when it was referenced by Origen code it returned true:
The
origen site env
result did accurately reflect what was in theorigen_site_config.yml
files, however the site config system allows setting of these variables via environment variables, and it turns out that I had this in my.bashrc
:It looks like the
origen site
command needs to be updated to make it aware of environment variables so that it gives an accurate reflection of the runtime values.The text was updated successfully, but these errors were encountered: