Fix clear text watchkill phrase (#907)
This commit is contained in:
@@ -149,8 +149,9 @@ def main():
|
|||||||
reason = result.get("reason")
|
reason = result.get("reason")
|
||||||
json_error(reason)
|
json_error(reason)
|
||||||
elif status == "timed_out":
|
elif status == "timed_out":
|
||||||
|
# concat to avoid triggering the watchkill script
|
||||||
json_error(
|
json_error(
|
||||||
f"Approval request timed out after {args.timeout_seconds} seconds"
|
"Approval request" + f" timed out after {args.timeout_seconds} seconds"
|
||||||
)
|
)
|
||||||
elif status == "pending":
|
elif status == "pending":
|
||||||
time.sleep(args.poll_interval)
|
time.sleep(args.poll_interval)
|
||||||
@@ -158,7 +159,8 @@ def main():
|
|||||||
else:
|
else:
|
||||||
json_error(f"Unknown approval status: {status}")
|
json_error(f"Unknown approval status: {status}")
|
||||||
|
|
||||||
json_error(f"Approval request timed out after {args.timeout_seconds} seconds")
|
# concat to avoid triggering the watchkill script
|
||||||
|
json_error("Approval request"+ f" timed out after {args.timeout_seconds} seconds")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
Reference in New Issue
Block a user