Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dropping support for 1.9.15.1 #1797

Merged
merged 1 commit into from
Nov 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ env:
global:
- SERF=0.7.0
- LUAROCKS=2.4.0
- OPENSSL=1.0.2h
- OPENSSL=1.0.2j
- CASSANDRA=2.2.7
- OPENRESTY=1.9.15.1
- OPENRESTY=1.11.2.1
- DOWNLOAD_CACHE=$HOME/download-cache
- INSTALL_CACHE=$HOME/install-cache
matrix:
Expand Down
2 changes: 2 additions & 0 deletions kong/dao/postgres_db.lua
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,8 @@ end

-- Delete old expired TTL entities
function PostgresDB:clear_expired_ttl()
ngx.log(ngx.DEBUG, "clearing expired TTLs")

local query = "SELECT * FROM ttls WHERE expire_at < CURRENT_TIMESTAMP(0) at time zone 'utc'"
local res, err = self:query(query)
if err then
Expand Down
2 changes: 1 addition & 1 deletion kong/meta.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ return {
-- third-party dependencies' required version, as they would be specified
-- to lua-version's `set()` in the form {from, to}
_DEPENDENCIES = {
nginx = {"1.9.15.1", "1.11.2.1"},
nginx = {"1.11.2.1"},
serf = {"0.7.0", "0.8.0"},
--resty = {}, -- not version dependent for now
--dnsmasq = {} -- not version dependent for now
Expand Down