Skip to content

Commit 3616abf

Browse files
alexsong93mhamann
authored andcommitted
Decode empty JSON arrays correctly (#324)
1 parent 5921317 commit 3616abf

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN apk --update add \
3232
&& rm -rf /var/cache/apk/*
3333

3434
# openresty build
35-
ENV OPENRESTY_VERSION=1.13.6.1 \
35+
ENV OPENRESTY_VERSION=1.13.6.2 \
3636
PCRE_VERSION=8.37 \
3737
TEST_NGINX_VERSION=0.24 \
3838
OPM_VERSION=0.0.3 \

scripts/lua/routing.lua

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
-- Used to dynamically handle nginx routing based on an object containing implementation details
2020

2121
local cjson = require "cjson"
22+
if (cjson.decode_array_with_array_mt ~= nil) then
23+
cjson.decode_array_with_array_mt(true)
24+
end
2225
local url = require "url"
2326
local utils = require "lib/utils"
2427
local request = require "lib/request"

0 commit comments

Comments
 (0)