Skip to content

Commit

Permalink
Merge fd910e0 into e9447ad
Browse files Browse the repository at this point in the history
  • Loading branch information
dwendland authored Aug 4, 2023
2 parents e9447ad + fd910e0 commit 62f9c44
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kong-plugin-auth-endpoint-config-ishare/rockspec.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ description = {

dependencies = {
'lua >= 5.1',
'lua-fiware-lib >= 0.0.9-1'
'lua-fiware-lib >= 0.0.10-1'
}

build = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@ function NgsiIshareHandler:access(config)
req_dict.post_args = kong.request.get_query()
req_dict.uri_args = kong.request.get_query()

-- Debug output of request body
if req_dict.body_data then
kong.log.debug("Received request body:")
kong.log.debug(req_dict.body_data)
end

-- Call iSHARE handler
local err = ishare.handle_ngsi_request(proxy_config, req_dict)
if err then
Expand Down
2 changes: 1 addition & 1 deletion kong-plugin-ngsi-ishare-policies/rockspec.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ description = {

dependencies = {
'lua >= 5.1',
'lua-fiware-lib >= 0.0.9-1'
'lua-fiware-lib >= 0.0.10-1'
}

build = {
Expand Down

0 comments on commit 62f9c44

Please sign in to comment.