You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mh...@apache.org on 2020/04/01 14:43:47 UTC

[openwhisk-apigateway] branch master updated: Fix array handling during mapping operations (#359)

This is an automated email from the ASF dual-hosted git repository.

mhamann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-apigateway.git


The following commit(s) were added to refs/heads/master by this push:
     new 519f1e9  Fix array handling during mapping operations (#359)
519f1e9 is described below

commit 519f1e9b1feb9d2eb83aa7d0859c903feaa9c321
Author: Matt Hamann <ma...@gmail.com>
AuthorDate: Wed Apr 1 10:43:37 2020 -0400

    Fix array handling during mapping operations (#359)
---
 scripts/lua/policies/mapping.lua | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/lua/policies/mapping.lua b/scripts/lua/policies/mapping.lua
index 8b42130..63ba789 100644
--- a/scripts/lua/policies/mapping.lua
+++ b/scripts/lua/policies/mapping.lua
@@ -21,6 +21,7 @@
 local logger = require "lib/logger"
 local utils = require "lib/utils"
 local cjson = require "cjson.safe"
+cjson.decode_array_with_array_mt(true)
 
 local _M = {}