diff options
author | Peter Barabas <peter.barabas@ericsson.com> | 2016-01-27 14:44:17 +0100 |
---|---|---|
committer | Stefan Berg <sfb@consultron.com> | 2016-01-29 14:35:33 +0100 |
commit | ff96bab09ae675c8e01167aa5f704a34d19ef763 (patch) | |
tree | f6ae272f64008070dbd05de4894d6e4616ea89d4 /deploy/common.py | |
parent | 8383c95e26d0e8036a75075c9ff20f1696268b05 (diff) |
Fix wrong offset in environment array
Change-Id: Ifd01bc89c2c73801544310f567dd0458233b3290
Signed-off-by: Peter Barabas <peter.barabas@ericsson.com>
(cherry picked from commit 2ddc5c24c06afb9ebd0670fb933fec61c45f5953)
Diffstat (limited to 'deploy/common.py')
-rw-r--r-- | deploy/common.py | 2 |
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() |