Skip to content

Commit

Permalink
Skip processing aclorch and mirrororch in the initial loop
Browse files Browse the repository at this point in the history
  • Loading branch information
daall committed Dec 7, 2020
1 parent fcc2e35 commit bd4d146
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions orchagent/orchdaemon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,11 @@ bool OrchDaemon::warmRestoreAndSyncUp()

for (Orch *o : m_orchList)
{
if (o == gAclOrch || o == gMirrorOrch) {
SWSS_LOG_ERROR("skipping ACL/mirror processing until the end");
continue;
}

o->doTask();
}
}
Expand Down

0 comments on commit bd4d146

Please sign in to comment.