mirror of
https://github.com/github/codeql-action.git
synced 2026-04-05 03:02:16 +00: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)
|