commit | bdacdf0df590a27c32366a38b932ddaa3e5b7269 | [log] [tgz] |
---|---|---|
author | Jakub Josef <jakub.josef@gmail.com> | Wed Apr 05 14:44:30 2017 +0200 |
committer | Jakub Josef <jakub.josef@gmail.com> | Wed Apr 05 14:44:30 2017 +0200 |
tree | 47d6a716ef59aa4959ea007d782b7b2ced9c4452 | |
parent | a7de903d6c423344c97b56b9c6feeaea8254dda3 [diff] [blame] |
Fix JSON parsing Change-Id: I22a50eb4fb9089bf9f70e6060363b9e080e65afb
diff --git a/src/com/mirantis/mk/Common.groovy b/src/com/mirantis/mk/Common.groovy index 12e3443..1789bd7 100644 --- a/src/com/mirantis/mk/Common.groovy +++ b/src/com/mirantis/mk/Common.groovy
@@ -405,7 +405,7 @@ */ def parseJSON(jsonString){ def m = [:] - def lazyMap = new JsonSlurper().parseText(output) + def lazyMap = new JsonSlurper().parseText(jsonString) m.putAll(lazyMap) return m }