From 8e366f4ea7437e3125213b8f13696e6f55f6ec9f Mon Sep 17 00:00:00 2001 From: Lance-Drane Date: Fri, 23 Aug 2024 08:50:48 -0400 Subject: [PATCH] include simname in response body of IPS_START event Signed-off-by: Lance-Drane --- ipsportal/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipsportal/api.py b/ipsportal/api.py index f816095..a7b040e 100644 --- a/ipsportal/api.py +++ b/ipsportal/api.py @@ -171,6 +171,7 @@ def event() -> Tuple[Response, int]: successes += 1 output['message'] = "New run created and " + output['message'] output['runid'] = runid + output['simname'] = e['simname'] continue update: Dict[str, Any] = {"$push": {"events": e}}