From 0ae16ddc1dd2bc95c60c0f762e9a5ccb1be89f62 Mon Sep 17 00:00:00 2001 From: Dmitriy Smirnov Date: Wed, 5 Jun 2024 10:39:34 +0300 Subject: [PATCH] Fix lb_dict argument of DecortController.lb_state method call in decort_lb.action method --- library/decort_lb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/decort_lb.py b/library/decort_lb.py index 73c7d27..8fcbbb2 100644 --- a/library/decort_lb.py +++ b/library/decort_lb.py @@ -133,7 +133,7 @@ class decort_lb(DecortController): def action(self,d_state='',restore=False): if restore == True: self.lb_restore(lb_id=self.lb_id) - self.lb_state(self.vins_facts, 'enabled') + self.lb_state(self.lb_facts, 'enabled') self.lb_facts['status'] = "ENABLED" self.lb_facts['techStatus'] = "STARTED"