We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 539fdcd commit 216e549Copy full SHA for 216e549
syncd/scripts/gbsyncdmgrd
@@ -34,7 +34,7 @@ def physyncd_spawn(gearbox_config):
34
35
for i, phy in enumerate(gearbox_config['phys'], 1):
36
cmd = '/usr/bin/syncd -p /etc/sai.d/pai.profile -x /usr/share/sonic/hwsku/context_config.json -g {}"'.format(i)
37
- proc = subprocess.Popen(cmd, close_fds=True)
+ proc = subprocess.Popen(cmd.split(), close_fds=True)
38
proc_list.append(proc)
39
syslog.syslog(syslog.LOG_INFO, 'Spawned PID {}'.format(proc.pid))
40
0 commit comments