diff options
author | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-11-08 10:11:51 -0500 |
---|---|---|
committer | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-11-08 10:11:51 -0500 |
commit | accdaeeb4408f3c23950d6e346c36124f87070f7 (patch) | |
tree | 7ef77a8dea91f7416aacdfed6dde92e907a3f9db /steuermann/run_all.py | |
parent | d759809a683cb1f7d216e73557f79c772ffd22e4 (diff) | |
download | steuermann-accdaeeb4408f3c23950d6e346c36124f87070f7.tar.gz |
count of failures by host at the top of the report
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@838 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'steuermann/run_all.py')
-rw-r--r-- | steuermann/run_all.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/steuermann/run_all.py b/steuermann/run_all.py index 28d6398..c47d1ff 100644 --- a/steuermann/run_all.py +++ b/steuermann/run_all.py @@ -569,11 +569,11 @@ def info_callback_want( db, run, tablename, host, cmd ) : s = s + 'W' if s == '' : s = '-' - return s + return { 'text' : s } def info_callback_depth( db, run, tablename, host, cmd ) : n = xnodes['%s:%s/%s'%(host,tablename,cmd)] - return n.depth + return { 'text' : n.depth } ##### def make_log_file_name( run_name, table, host, cmd ) : |