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 terminate function doesn't terminate any instance because of an invalid ostmeam variable value on line 42 of the file dva/work/terminate.py.
Actually, the except statement prevents the error from being shown.
When changed to except None: the error manifests itself and the function finishes without terminating:
[mkovacik@zrnko globe]$ dva -c ~/.pem/validation-staging.yaml terminate -i curl-result.yaml
There will be 3 termination calls
Traceback (most recent call last):
File "/usr/bin/dva", line 5, in <module>
pkg_resources.run_script('dva==0.6', 'dva')
File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 483, in run_script
self.require(requires)[0].run_script(script_name, ns)
File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 1348, in run_script
exec(script_code, namespace, namespace)
File "/usr/lib/python2.7/site-packages/dva-0.6-py2.7.egg/EGG-INFO/scripts/dva", line 146, in <module>
File "build/bdist.linux-x86_64/egg/aaargh/app.py", line 176, in run
File "/usr/lib/python2.7/site-packages/dva-0.6-py2.7.egg/EGG-INFO/scripts/dva", line 112, in terminate
File "build/bdist.linux-x86_64/egg/dva/work/terminate.py", line 42, in main
NameError: global name 'ostmeam' is not defined
[mkovacik@zrnko globe]$
The text was updated successfully, but these errors were encountered:
the
terminate
function doesn't terminate any instance because of an invalidostmeam
variable value online 42
of the filedva/work/terminate.py
.Actually, the
except
statement prevents the error from being shown.When changed to
except None:
the error manifests itself and the function finishes without terminating:The text was updated successfully, but these errors were encountered: