Skip to content

Commit

Permalink
chore(vault): fix docstring of get_cache_value_and_ttl (#11828)
Browse files Browse the repository at this point in the history
Signed-off-by: Aapo Talvensaari <[email protected]>
(cherry picked from commit aa16028)
  • Loading branch information
bungle authored and github-actions[bot] committed Oct 24, 2023
1 parent b44d611 commit cbfcb53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kong/pdk/vault.lua
Original file line number Diff line number Diff line change
Expand Up @@ -742,14 +742,14 @@ local function new(self)
-- Function `get_cache_value_and_ttl` returns a value for caching and its ttl
--
-- @local
-- @function get_from_vault
-- @function get_cache_value_and_ttl
-- @tparam string value the vault returned value for a reference
-- @tparam table config the configuration settings to be used
-- @tparam[opt] number ttl the possible vault returned ttl
-- @treturn string value to be stored in shared dictionary
-- @treturn number shared dictionary ttl
-- @treturn number lru ttl
-- @usage local value, err = get_from_vault(reference, strategy, config, cache_key, parsed_reference)
-- @usage local cache_value, shdict_ttl, lru_ttl = get_cache_value_and_ttl(value, config, ttl)
local function get_cache_value_and_ttl(value, config, ttl)
local cache_value, shdict_ttl, lru_ttl
if value then
Expand Down

0 comments on commit cbfcb53

Please sign in to comment.