summaryrefslogtreecommitdiffstats
path: root/deploy
diff options
context:
space:
mode:
authorStefan Berg <stefan.k.berg@ericsson.com>2016-01-29 13:36:44 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-01-29 13:36:44 +0000
commit9ddcbb3c3649e85e16464ff63b1a999a5fa7f132 (patch)
treed81eb65c2e087ec0f8b1bc6074d1644f7a38d380 /deploy
parentc614e4f1b1fa1475512d7a219bceaa240cb1635a (diff)
parentff96bab09ae675c8e01167aa5f704a34d19ef763 (diff)
Merge "Fix wrong offset in environment array" into stable/brahmaputra
Diffstat (limited to 'deploy')
-rw-r--r--deploy/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/common.py b/deploy/common.py
index 4b0561cd4..cc418b59b 100644
--- a/deploy/common.py
+++ b/deploy/common.py
@@ -19,7 +19,7 @@ import errno
N = {'id': 0, 'status': 1, 'name': 2, 'cluster': 3, 'ip': 4, 'mac': 5,
'roles': 6, 'pending_roles': 7, 'online': 8, 'group_id': 9}
-E = {'id': 0, 'status': 1, 'name': 2, 'release_id': 3, 'pending_release_id': 5}
+E = {'id': 0, 'status': 1, 'name': 2, 'release_id': 3, 'pending_release_id': 4}
R = {'id': 0, 'name': 1, 'state': 2, 'operating_system': 3, 'version': 4}
RO = {'name': 0, 'conflicts': 1}
CWD = os.getcwd()