create_l3_stations: Do not flag error messages if ports do not exist during pre-cleanup

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-11-17 11:24:53 -08:00
parent e4bbca9482
commit f70a59d551

View File

@@ -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):