[dvs] Start portsyncd before orchagent for docker-sonic-vs container (#5140)
Swap order of orchagent and portsyncd in start.sh and fix priorities Many docker virtual switch tests are failing at the moment because orchagent never finishes initializing. After doing some searching I figured out that Ethernet24 is never published to State DB, which is reminiscent of #4821 Signed-off-by: Danny Allen <daall@microsoft.com>
This commit is contained in:
parent
9c364fbf93
commit
9297d8ee47
@ -87,10 +87,10 @@ fi
|
||||
|
||||
supervisorctl start syncd
|
||||
|
||||
supervisorctl start orchagent
|
||||
|
||||
supervisorctl start portsyncd
|
||||
|
||||
supervisorctl start orchagent
|
||||
|
||||
supervisorctl start neighsyncd
|
||||
|
||||
supervisorctl start teamsyncd
|
||||
|
@ -43,16 +43,16 @@ autorestart=false
|
||||
stdout_logfile=syslog
|
||||
stderr_logfile=syslog
|
||||
|
||||
[program:orchagent]
|
||||
command=/usr/bin/orchagent.sh
|
||||
[program:portsyncd]
|
||||
command=/usr/bin/portsyncd
|
||||
priority=5
|
||||
autostart=false
|
||||
autorestart=false
|
||||
stdout_logfile=syslog
|
||||
stderr_logfile=syslog
|
||||
|
||||
[program:portsyncd]
|
||||
command=/usr/bin/portsyncd
|
||||
[program:orchagent]
|
||||
command=/usr/bin/orchagent.sh
|
||||
priority=6
|
||||
autostart=false
|
||||
autorestart=false
|
||||
|
Reference in New Issue
Block a user