summaryrefslogtreecommitdiff
path: root/zuul/model.py
diff options
context:
space:
mode:
authorJames E. Blair <jeblair@hp.com>2015-02-11 18:09:20 -0800
committerJames E. Blair <jeblair@hp.com>2015-02-25 09:54:04 -0800
commitb0e8be618f0e73af454da3223eaaf8e2aec25686 (patch)
tree0e4da4e86bb2a928c0129be2b3204884745617dc /zuul/model.py
parent458970bb627fd9082dedb6ae574b6841abe24232 (diff)
downloadzuul-b0e8be618f0e73af454da3223eaaf8e2aec25686.tar.gz
Remove job parameters from status.json
They don't have anything particularly sensitive now, but they might in the future, and they can be quite large (thus making status.json large). Since the zuul client command uses the same data, remove the parameters column from its output. Change-Id: I681c576a25012a6fb0733f468778576d6003c088
Diffstat (limited to 'zuul/model.py')
-rw-r--r--zuul/model.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/zuul/model.py b/zuul/model.py
index 1786fd9bd..f530a91f9 100644
--- a/zuul/model.py
+++ b/zuul/model.py
@@ -780,7 +780,6 @@ class QueueItem(object):
'canceled': build.canceled if build else None,
'retry': build.retry if build else None,
'number': build.number if build else None,
- 'parameters': build.parameters if build else None,
'worker': worker
})