From 58d9a47c00b80c7305d26d634ad14080ea98600f Mon Sep 17 00:00:00 2001 From: Howard Gil Date: Wed, 14 Aug 2024 13:46:43 -0700 Subject: [PATCH] Clarified default end_state_reason (#353) --- agentops/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agentops/client.py b/agentops/client.py index a024d9c7..8878e806 100644 --- a/agentops/client.py +++ b/agentops/client.py @@ -351,7 +351,7 @@ def handle_exception(exc_type, exc_value, exc_traceback): atexit.register( lambda: cleanup( end_state="Indeterminate", - end_state_reason="Process exited without calling end_session()", + end_state_reason="N/A (process exited without calling agentops.end_session(...))", ) ) signal.signal(signal.SIGINT, signal_handler)