# HG changeset patch # User Kim Alvefur # Date 1631404131 -7200 # Node ID d93107de52dde5ddc49be37b5604e5133f9216d0 # Parent 9c23e7c8a67a7b2b3c5f80ebd01104561bffb256 util.prosodyctl.check: Ignore unused "ok" variable [luacheck] diff -r 9c23e7c8a67a -r d93107de52dd util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Sun Sep 12 01:38:33 2021 +0200 +++ b/util/prosodyctl/check.lua Sun Sep 12 01:48:51 2021 +0200 @@ -725,7 +725,7 @@ -- intentionally not doing this by default if what == "connectivity" then print(is_prosody_running()) - local ok, prosody_is_running = is_prosody_running(); + local _, prosody_is_running = is_prosody_running(); if configmanager.get("*", "pidfile") and not prosody_is_running then print("Prosody does not appear to be running, which is required for this test."); print("Start it and then try again.");