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
When setting the JOB_QUEUE=long we notice that the eval statement in env_batch.py unexpectedly
evaluates the string long to be <type 'long'>
The solution is to only use the eval statement if the setting includes whitespace.
The text was updated successfully, but these errors were encountered:
do not eval words - only strings with whitespace
eval on a word sometimes gives unexpected results, for example eval('long') results in
<type 'long'> avoid this by only using eval if the string contains whitespace.
Test suite: on hobart: create_test cime_developer --queue long, scripts_regression_tests.py --fast
Test baseline:
Test namelist changes:
Test status: bit for bit
Fixes#1613
User interface changes?:
Code review:
When setting the JOB_QUEUE=long we notice that the eval statement in env_batch.py unexpectedly
evaluates the string long to be
<type 'long'>
The solution is to only use the eval statement if the setting includes whitespace.
The text was updated successfully, but these errors were encountered: