forked from api7/lua-resty-healthcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
rockspecs/lua-resty-healthcheck-api7-xrpc-2.3.1-0.rockspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package = "lua-resty-healthcheck-api7-xrpc" | ||
version = "2.3.1-0" | ||
source = { | ||
url = "git://github.com/api7/lua-resty-healthcheck-xrpc", | ||
tag = "v2.3.1" | ||
} | ||
|
||
description = { | ||
summary = "Healthchecks for OpenResty to check upstream service status", | ||
detailed = [[ | ||
lua-resty-healthcheck is a module that can check upstream service | ||
availability by sending requests and validating responses at timed | ||
intervals. | ||
]], | ||
homepage = "https://github.com/api7/lua-resty-healthcheck-xrpc", | ||
license = "Apache 2.0" | ||
} | ||
|
||
dependencies = { | ||
"lua-resty-worker-events = 1.0.0" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["resty.healthcheck"] = "lib/resty/healthcheck.lua", | ||
["resty.healthcheck.utils"] = "lib/resty/healthcheck/utils.lua" | ||
} | ||
} |