Skip to content

Commit d8bfb0c

Browse files
committed
Delete warnings messages on 3party libraries
With this commit, the _G write guard error message, that was not good at all to have. Fix THREESCALE-5816 Signed-off-by: Eloy Coto <[email protected]>
1 parent c4769a4 commit d8bfb0c

File tree

4 files changed

+27
-10
lines changed

4 files changed

+27
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
- Fixed Payload limit content-length response header [PR #1266](https://github.com/3scale/APIcast/pull/1266) [THREESCALE-6736](https://issues.redhat.com/browse/THREESCALE-6736)
1818
- Fixed IPcheck policy issues with invalid IP [PR #1273](https://github.com/3scale/APIcast/pull/1273) [THREESCALE-7075](https://issues.redhat.com/browse/THREESCALE-7075)
1919
- Disabled content-caching globally if no policy at all [PR #1278](https://github.com/3scale/APIcast/pull/1278) [THREESCALE-7016](https://issues.redhat.com/browse/THREESCALE-7016)
20-
20+
- Fixed warning messages [PR #1282](https://github.com/3scale/APIcast/pull/1282) [THREESCALE-5816](https://issues.redhat.com/browse/THREESCALE-5816)
2121

2222
### Added
2323

gateway/Roverfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fifo 0.2-0||development
1010
http 0.3-0||development
1111
inspect 3.1.1-0||production
1212
ldoc 1.4.6-2||development
13-
liquid 0.1.6-1||production
13+
liquid 0.1.7-1||production
1414
jsonschema 0.8-0|aa4740624cca4c10585bd7d086b42aa0b9ab14fa|testing
1515
lpeg 1.0.2-1||development
1616
lpeg_patterns 0.5-0||development

gateway/src/apicast/cli/filesystem.lua

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
-- This module exposes functions that work with filesystem.
33
-- So far exposes only function - to recursively traverse a filesystem path.
44
-- Workaround for https://github.com/stevedonovan/Penlight/issues/265
5+
--
6+
7+
--- These lines to avoid _G write guard issues, external depencies
8+
-- See https://github.com/openresty/lua-nginx-module/issues/1558 for more info
9+
rawset(_G, 'lfs', false)
10+
rawset(_G, 'warn', false)
511

612
local pl_path = require('pl.path')
713
local exists, isdir = pl_path.exists, pl_path.isdir

gateway/src/resty/yaml.lua

+19-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
1-
local yaml = require('lyaml.functional')
1+
local init = false
2+
local _M = {}
23

3-
yaml.NULL = ngx.null
4-
yaml.isnull = function(value) return value == ngx.null end
4+
local function init_yaml()
5+
if not init then
6+
init = true
7+
yaml = require('lyaml.functional')
8+
yaml.NULL = ngx.null
9+
yaml.isnull = function(value) return value == ngx.null end
10+
YAML = require('lyaml')
11+
_M["load"] = YAML.load
12+
_M["null"] = YAML.null
13+
end
14+
end
515

6-
local YAML = require('lyaml')
716

8-
local _M = {
9-
load = YAML.load,
10-
null = YAML.null,
17+
local mt = {
18+
__index = function (self, key)
19+
init_yaml()
20+
return _M[key]
21+
end
1122
}
1223

13-
return _M
24+
return setmetatable({}, mt)

0 commit comments

Comments
 (0)