mirror of
https://github.com/softprops/action-gh-release.git
synced 2026-03-23 03:39:54 +08:00
6 lines
167 B
Lua
6 lines
167 B
Lua
if not redis.call('zscore', client_last_seen_key, client) then
|
|
return redis.error_reply('UNKNOWN_CLIENT')
|
|
end
|
|
|
|
redis.call('zadd', client_last_seen_key, now, client)
|