From a3684a8ddcd71883f89d0317b7de477717ad3fd2 Mon Sep 17 00:00:00 2001 From: Innokentii Konstantinov Date: Tue, 20 Aug 2024 19:24:53 +0800 Subject: [PATCH] Add stack_id to Tenant dataclass (#4864) Fix retrying chatops_proxy tasks --------- Co-authored-by: Vadim Stepanov --- engine/apps/chatops_proxy/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/apps/chatops_proxy/client.py b/engine/apps/chatops_proxy/client.py index 1c78a213..8f638d12 100644 --- a/engine/apps/chatops_proxy/client.py +++ b/engine/apps/chatops_proxy/client.py @@ -29,6 +29,8 @@ class Tenant: service_tenant_id: str service_type: str cluster_slug: str + stack_id: int + stack_slug: str slack_links: List[SlackLink] = field(default_factory=list) msteams_links: List[MSTeamsLink] = field(default_factory=list)