From f70a59d55120f9386cb9780ec0a25a42f5110223 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 17 Nov 2021 11:24:53 -0800 Subject: [PATCH] create_l3_stations: Do not flag error messages if ports do not exist during pre-cleanup Signed-off-by: Matthew Stidham --- py-scripts/create_l3_stations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/create_l3_stations.py b/py-scripts/create_l3_stations.py index 354804f3..df5ea5ff 100755 --- a/py-scripts/create_l3_stations.py +++ b/py-scripts/create_l3_stations.py @@ -91,7 +91,7 @@ class CreateL3(Realm): def pre_cleanup(self): self.cx_profile.cleanup_prefix() for sta in self.sta_list: - self.rm_port(sta, check_exists=True) + self.rm_port(sta, check_exists=True, debug_=False) def build(self):