Skip to content

Commit bd4d146

Browse files
committed
Skip processing aclorch and mirrororch in the initial loop
1 parent fcc2e35 commit bd4d146

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

orchagent/orchdaemon.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,11 @@ bool OrchDaemon::warmRestoreAndSyncUp()
553553

554554
for (Orch *o : m_orchList)
555555
{
556+
if (o == gAclOrch || o == gMirrorOrch) {
557+
SWSS_LOG_ERROR("skipping ACL/mirror processing until the end");
558+
continue;
559+
}
560+
556561
o->doTask();
557562
}
558563
}

0 commit comments

Comments
 (0)